[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.PlotArea

PlotArea Property

PlotArea

Gets the plot area of the chart.

The plot area is the region where the chart data series are drawn.

Declaration
IPlotArea PlotArea { get; }
ReadOnly Property PlotArea As IPlotArea
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IPlotArea plotArea = chart.PlotArea;
IChartFormat format = plotArea.Format;