OnCalculateMinMax()
|
<< Click to Display Table of Contents >> OnCalculateMinMax() |
|
An event driven method which is called while the chart scale is being updated. This method is used to determine the highest and lowest value that can be used for the chart scale and is only called when the chart object is set to IsAutoScale.
Note: The indexer used to look up a Series<T> value through barsAgo is NOT guaranteed to be in sync when the OnCalculateMinMax() method is called. You will need to use GetValueAt() to obtain a historical value at a specified absolute index. |
This method does not return a value.
public override void OnCalculateMinMax()
{
}
This method does not accept any parameters.
protected override void OnStateChange() |