Files
2024-04-27 09:23:34 +02:00

16 lines
311 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenFlashChart
{
public class LineScatter:Scatter
{
public LineScatter()
{
this.ChartType = "scatter_line";
this.DotStyleType.Type = DotType.SOLID_DOT;
}
}
}