I have added the test method in my code ( Obviously I have also set IsAutoScale = true; in SetDefault state :
public override void OnCalculateMinMax()
{
// make sure to always start fresh values to calculate new min/max values
double tmpMin = double.MaxValue;
double tmpMax = double.MinValue;
tmpMin = 68.50;
tmpMax = 74.00;
// Finally, set the minimum and maximum Y-Axis values
MinValue = tmpMin;
MaxValue = tmpMax;
}
That's not what I get.

Comment