#### Ticks
* `options.gridLines.tickMarkLength` was renamed to `options.gridLines.tickLength`.
+* `options.ticks.fixedStepSize` is no longer used. Use `options.ticks.stepSize`.
* `options.ticks.major` and `options.ticks.minor` were replaced with scriptable options for tick fonts.
* `Chart.Ticks.formatters.linear` was renamed to `Chart.Ticks.formatters.numeric`.
-import {isNullOrUndef, valueOrDefault} from '../helpers/helpers.core';
+import {isNullOrUndef} from '../helpers/helpers.core';
import {almostEquals, almostWhole, log10, _decimalPlaces, _setMinAndMaxByKey, sign} from '../helpers/helpers.math';
import Scale from '../core/core.scale';
import {formatNumber} from '../core/core.intl';
min: opts.min,
max: opts.max,
precision: tickOpts.precision,
- stepSize: valueOrDefault(tickOpts.fixedStepSize, tickOpts.stepSize)
+ stepSize: tickOpts.stepSize
};
const ticks = generateTicks(numericGeneratorOptions, me);