Posted 12 Jul 2012 Link to this post
radchart1.Font =
new
System.Drawing.Font(
"B Nazanin"
, 12, FontStyle.Bold);
Posted 17 Jul 2012 Link to this post
Here's how you can achieve this:
<
telerik:RadChart
ID
=
"RadChart1"
runat
"server"
>
PlotArea
XAxis
Appearance
TextAppearance
TextProperties-Font
"Lucida Calligraphy, 9pt"
</
radchart1.PlotArea.XAxis.Appearance.TextAppearance.TextProperties.Font =
, 12);
Posted 19 Jul 2012 Link to this post
From your last post I guess you want to change the Series Items Labels Font. Here's how this can be done:
RadChart1.Series[0].Appearance.TextAppearance.TextProperties.Font = new System.Drawing.Font("B Nazanin", 12);
Kind regards,
Posted 20 Jul 2012 Link to this post