Is there a way to reverse the order of an axis so that the numbers run in reverse?
I have a chart where the Y axis 0 value should start at the top and increment toward the bottom of the chart.
Thanks
Haven't heard back for an answer on this, have no idea if its implemented or not, but from a programming perspective this has got to be pretty simple on your end, and should be even simpler on my end. There are 4 quadrants in the Cartesian plane, are all your charts limited to just the first? How about an enum where I can specify which quadrant in the Cartesian plane I want my chart to be rendered in? I mean this aint rocket science here.
If you use negative Y values the points will render down from 0, or are you referring to something else?
My y values aren't negative though, they're positive. I need the y values to run in that same direction for positive values.
The XamWebChart doesn't currently support that kind of axis inversion. It's feature we are targetting for the DataChart. You can simulate an inverted axis by using negative values for Y and using the label formatting to remove the negative sign. You could add a value property to your data item class which automatically returns the negative version, and you could map this to the Value for the chart.
-Graham