32 lines
532 B
C#
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;
|
|
}
|
|
}
|