[]
Gets or sets whether the represented text is bold.
bool Bold { get; set; }
Property Bold As Boolean
worksheet.Range["A1:B3"].Value = new object[,] {
{"Month", "Sales"},
{"Jan", 100},
{"Feb", 120}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B3"], RowCol.Columns, true, true);
chart.HasDataTable = true;
IFontFormat font = chart.DataTable.Font;
bool bold = font.Bold;