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

32 lines
564 B
C#

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