I am working on a prototype that involves charting.
I have a lseries for a line chart that is displayed correctly.
I am trying to have another series for different set of data points to appear as markers on the same x and Y..
here is what I am using:
<
="ctlChart">
>
="1"/>
="3rd">
="2"/>
="3"/>
="4"/>
="5"/>
="6"/>
="7"/>
="8"/>
="9"/>
="10"/>
="11"/>
="12"/>
="13"/>
="14"/>
="15"/>
="16"/>
="17"/>
="18"/>
="19"/>
="20"/>
="Area">
="2"
="Star5"
="Red" />
="18">
/>
="Boys Growth Chart" />
On my second series my datapoint is Label="6" Value
="18" and type is AxisX, but it is not respecting the axis label.
1. What is the right way to accomplish this?
2. How do I set the label for the xAxis going right and YAxis going up?
Thanks!
you are doing things the right way. however, since the x-axis can only use the labels from one series, it uses the last series in the list. since your AreaSeries contains only one DataPoint, there are no labels printed on the x-axis.
for question number 2, this is the default behavior, so you don't have to do anything. unless i misunderstand the question.