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. It is only called when the chart object is either set to IsAutoScale while there are multiple charts objects rendered or only a single object would be rendered on the chart.
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() |