CPF/CPF.ReoGrid/Chart/LineChart.cs
2024-06-24 10:15:59 +08:00

32 lines
532 B
C#

using System;
namespace CPF.ReoGrid.Chart
{
public class LineChart : AxisChart
{
public LineChartPlotView LineChartPlotView
{
get
{
return this.lineChartPlotView;
}
protected set
{
this.lineChartPlotView = value;
}
}
public LineChart()
{
base.AddPlotViewLayer(this.lineChartPlotView = new LineChartPlotView(this));
}
protected override ChartLegend CreateChartLegend(LegendType type)
{
return new LineChartLegend(this);
}
private LineChartPlotView lineChartPlotView;
}
}