Files
crm.e5.pl/include/ECM/open_flash_chart2/dot-net-library/written-by-xiao-yifang/OpenFlashChart/LineHollow.cs
2024-04-27 09:23:34 +02:00

17 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenFlashChart
{
public class LineHollow:LineBase
{
public LineHollow()
{
//this.ChartType = "line_hollow";
this.DotStyleType.IsHollow = true;
this.DotStyleType.Type = DotType.HOLLOW_DOT;
}
}
}