Hi,
I am trying to display a few series in a 2D xamChart, all series share similar data points, in other words, y-axis are simply integers, and x-axis are date.
When I display one series only, x-axis label looks fine. But when I add more series, there is no x-axis labels..
And from the wpf samples, feature browser for 2D xamChart, I couldn't observe the x-axis labels too.
I thought the labels should be April, May,. etc...
<igCA:Series.DataPoints> <igCA:DataPoint Value="4" Label="April"/> <igCA:DataPoint Value="6" Label="May"/> <igCA:DataPoint Value="7" Label="June"/> <igCA:DataPoint Value="6" Label="July"/> <igCA:DataPoint Value="8" Label="August"/> </igCA:Series.DataPoints>
Could anyone help on this ?
Thanks and regards
Jimmy.
BTW, I have converted date on x-axis to string.
And I am using line chart.
Thanks.
Which series type are you trying to use? If you are just specifying a label and a value, make sure you are trying to use a single value series like line or column.
-Graham