[]
Gets the IFontFormat object that represents the font of the legend.
Use the returned object to access and modify font settings for the legend text, such as color, size, and italic style.
IFontFormat Font { get; }
ReadOnly Property Font As IFontFormat
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
ILegend legend = chart.Legend;
IFontFormat font = legend.Font;
font.Color.RGB = Color.Red;