I am working with the Infragistics xamDataChart, and plotting an unknown number of series. I am using the solution posted here, and it is working well: XamDataChart with unknown number of series
My question is on how to edit the Axis Titles generated, in XAML. I would like for there to only be generated one set of x and y axes, as I will structure my data so that these will be sufficient.
How do I go about this?
Thanks!
So if I am getting it right, you want to edit the name of axis? Maybe too late, but this helped me.
You can set any property of axis in method
UpdateSeriesProperties. So for example this is how my method looks like:As you can see I am setting min/max values, labels, binding etc. here.
You can also set properties of Graph's Series: You can add
Nameproperty in yourSeriesViewModellike this:Then you can access this property in
SeriesBinderInfoin methodCreateSeries:You can set any property of
seriesin there to reflect that in your graph.