Gets and sets all Stock market Low values.
public ValueList LowValues {get; set;}

Remarks


The LowValues property is used to store all Stock market Low values. You can access Low values in the same way you can access X or Y values.

Example


[C#]

//this code makes all Candle Low values the same as Close values 

for (int i=0;i<((Steema.TeeChart.Styles.Candle)tChart1[0]).Count;i++)
     ((Steema.TeeChart.Styles.Candle)tChart1[0]).LowValues[i] =  
        ((Steema.TeeChart.Styles.Candle)tChart1[0]).CloseValues[i];

See Also

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