Values defining vertical point positions.
public ValueList YValues {get;}

Remarks


You CAN'T Delete, Clear or Add values DIRECTLY. You need to call the Series equivalent methods to do it.

Example


Many things can be done with the YValues property.
For example, you can set warning remarks if a threshold is exceeded.

[C#]
Graphics3D g=tChart3.Graphics3D;

//output text if data over 600 threshold 
if (tChart3[0].YValues[i]>600)
g.TextOut(tmpX,tmpY,"Warning !! X: "+tChart3[0].XValues[i].ToString()+", Y: "+tChart3[0].YValues[i].ToString());

See Also

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