Hi,
I'm using a Bar Series bound to a Data Table, with irregular X-Values, eg (10, 20, 30, 180). When I use the following :
chart.DataBindingManager.AddBinding(0, 0, "XValues", dataTable, "XColumnName")
I would like to see 4 bars, equally spaced, with X labels 10, 20, 30 & 180. Instead when I use
chart.Axis(StandardAxis.PrimaryX).ScaleMode = AxisScaleMode.Numeric
I see the 10, 20, 30 grouped together, then no value until the 180 value. I am aware that I could use MajorTickModeNumeric.IrregularSteps which I would then need to manually define, but my preference is to just be able to bind to the values in the table.
Is this possible?
BTW, we're using a relatively old version of the Nevron Chart components (Q1 2006).
Thanks