Values defining horizontal point positions.
public ValueList XValues {get;}

Remarks


By default, any Series has an XValues property. This is the IValueList where the  point values will be stored at runtime. Also by default, XValues is a Public property. Some derived Series publish it: Line series, Bar series, Points series, etc. Some others publish it with another, more friendly name: GanttSeries.StartValues, etc.  

WARNING:

You CAN NOT Delete, Clear or Add values DIRECTLY. You need to call the Series equivalent methods to do this.

Example


[C#]

Many things can be done with the XValues property.
For example, you can modify its values (thus forcing the Chart to repaint):
This will change the 5th point horizontal value to 10.

tChart1[0]..XValues[5] = 10


See Also

Series Class | Series Members | Steema.TeeChart.Styles Namespace