Hi!
I am using XamWebChart. The default scale values on the x-axis and y-axis appear bigger for me. Is there a way to reduce the font size of these values on both the axis. Please suggest.
Thanks and regards,
Usha.
Hi! Max,
Thanks it is working.
Certainly. You can set the fontsize on the axis labels to reduce font.
<igChart:XamWebChart Name="chart"> <igChart:XamWebChart.Series> <igChart:Series/> </igChart:XamWebChart.Series> <igChart:XamWebChart.Axes> <igChart:Axis AxisType="PrimaryX"> <igChart:Axis.Label> <igChart:LabelGroup FontSize="10"/> </igChart:Axis.Label> </igChart:Axis> <igChart:Axis AxisType="PrimaryY"> <igChart:Axis.Label> <igChart:LabelGroup FontSize="10"/> </igChart:Axis.Label> </igChart:Axis> </igChart:XamWebChart.Axes></igChart:XamWebChart>