[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartArea

IChartArea Interface

Represents the chart area of a chart. The chart area on a 2-D chart contains the axes, the chart title, the axis titles, and the legend. The chart area
on a 3-D chart contains the chart title and the legend; it doesn’t include
the plot area (the area within the chart area where the data is plotted).
For information about the area where data is plotted and formatted, see the IPlotArea object.

Namespace: GrapeCity.Documents.Excel.Drawing
Assembly: DS.Documents.Excel.dll
Syntax
public interface IChartArea
Public Interface IChartArea
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IChartArea chartArea = chart.ChartArea;
chartArea.RoundedCorners = true;
bool roundedCorners = chartArea.RoundedCorners;

Properties

Name Description
Font

Gets the IFontFormat object that represents the font of the specified object.

Format

Gets the IChartFormat object for the chart area.

Parent

Gets the parent object for the specified object.

RoundedCorners

Gets or sets whether the embedded chart has rounded corners.