Hi,
My xamchart of type Area displays balance(y axis) for end of every month(x axis) in a specific year. I want my x axis to start from January and dont want to show that gap between starting point and January.
I guess i can manually set the range of an axis with the help of minimum and maximum properties but they are of type double where as my x axis displays month name in string.
How do i set minimum = January and Maximum = December with Unit as 1.
Any help will be greatly appreciated.
Thanks.
That was exactly what i wanted. Thanks a lot!
You can try using:
<igChart:XamChart>
<igChart:XamChart.Axes>
<igChart:Axis AxisType="PrimaryX" Minimum="1" Maximum="12" Unit="1" AutoRange="False" />
</igChart:XamChart.Axes>
...