[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartArea.Font

Font Property

Font

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

Declaration
IFontFormat Font { get; }
ReadOnly Property Font As IFontFormat
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IChartArea chartArea = chart.ChartArea;
chartArea.Font.Bold = true;
bool bold = chartArea.Font.Bold;