After upgrading from 1.7 to 1.8 my chart that using a secondary Y axis is no longer able to find the maximum value:
axisY2: {
labelFormatter: function (e) {
var maxElement = e.chart.axisY2.maximum;
return FormatDataSize(maxElement, e.value);
}
},
The firstproblem is e.chart.axisY2 is no longer valid… so something has changed…