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; } }