Hi Yordan,
# 1 : I wish to change ( decrease ) the font size of the labels
You can customize the font size by using label style property of chart and range navigator.
<SfChart> <ChartAxisLabelStyle Size="14px"></ChartAxisLabelStyle> </SfChart> <SfRangeNavigator> <RangeNavigatorLabelStyle Size="14px"></RangeNavigatorLabelStyle> </SfRangeNavigator>
|
# 2 : I wish to be able to manipulate ( decrease ) the sizes ( heights ) of the "size 1", "size 2" , "size 3" and "size 4"
You can decrease the size 1 and size 2 by specifying chart margin top and bottom as 0. The size 3 can be customized by specifying the height of range navigator. The size 4 can be customized by specifying margin bottom as 0.
<SfChart> <ChartMargin Top="40" Bottom="40"></ChartMargin> </SfChart> <SfRangeNavigator> <RangeNavigatorMargin Top="20" Bottom="40"></RangeNavigatorMargin> </SfRangeNavigator>
|
Please revert us if you have any concerns.
Regards,
Durga G