I have a bar chart with multiple series.
chartResults.DataManager.ValuesYColumns = "fValue"
chartResults.DataManager.ValuesXColumn = "iDate"
chartResults.DataGroupColumn = "sType"
chartResults.PlotArea.XAxis.Appearance.ValueFormat = Styles.ChartValueFormat.ShortDate
chartResults.DataSource = dt
chartResults.DataBind()
chartResults.PlotArea.XAxis.AutoScale = True
chartResults.PlotArea.XAxis.IsZeroBased = False
chartResults.PlotArea.YAxis.IsZeroBased = True
chartResults.PlotArea.XAxis.Appearance.Visible = Styles.ChartAxisVisibility.True
When one series exists, the rightmost point lies to the right (correctly) of XLabel 10/23/2012. When a second series is added, the rightmost point moves to the left of 10/23/2012. This is incorrect, and does not reflect the accuracy of the first series.
Can someone offer any advice, or workaround to get the points to stay on their correct x-axis point?
Any help or advice is greatly appreciated! TIA!