Files

15 lines
235 B
C#
Raw Normal View History

2024-04-27 09:23:34 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenFlashChart
{
public class Line : LineBase
{
public Line()
{
this.ChartType = "line";
}
}
}