I have a line chart where I'm plotting two series, one if for "this year", the other is for the "prior year". It is possible the the "prior year" won't have 12 items to plot. The x-axis label refelects just the month of the data point.
Right now, the "prior year" series starts at the left side of the chart, but I need it to be right-justified because the data represents the last few months of the "prior year".
How do I represent that data in the chart? Is it possible to set the x Value in the data mapping?
The line series is a category series and it will align the data from a new series with the first series by the simple index in the collection. There is a tacit assumption that your data is already aligned. In your case the anticipation is that there are empty items for the months where there was not representative data such that the data for each series will align by index. This post may assist you with more information: http://community.infragistics.com/forums/p/38082/220246.aspx#220246
-Graham