[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartArea.RoundedCorners

RoundedCorners Property

RoundedCorners

Gets or sets whether the embedded chart has rounded corners.

Declaration
bool RoundedCorners { get; set; }
Property RoundedCorners As Boolean
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IChartArea chartArea = chart.ChartArea;
chartArea.RoundedCorners = true;
bool roundedCorners = chartArea.RoundedCorners;