me.displayFormat = timeOpts.displayFormats[unit];
var stepSize = timeOpts.stepSize || determineStepSize(minTimestamp || dataMin, maxTimestamp || dataMax, unit, maxTicks);
- var ticks = me.ticks = Chart.Ticks.generators.time({
+ me.ticks = Chart.Ticks.generators.time({
maxTicks: maxTicks,
min: minTimestamp,
max: maxTimestamp,
// At this point, we need to update our max and min given the tick values since we have expanded the
// range of the scale
- me.max = helpers.max(ticks);
- me.min = helpers.min(ticks);
+ me.max = helpers.max(me.ticks);
+ me.min = helpers.min(me.ticks);
},
// Get tooltip label
getLabelForIndex: function(index, datasetIndex) {