[]
Represents the plot area of a chart. This is the area where your chart data is plotted.
public interface IPlotArea
Public Interface IPlotArea
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IPlotArea plotArea = chart.PlotArea;
IChartFormat format = plotArea.Format;
| Name | Description |
|---|---|
| Format | Gets the IChartFormat object for the plot area. |
| Parent | Gets the parent object for the specified object. |