diff --git a/js/notebook/src/plot/std/axis/DefaultAxis.ts b/js/notebook/src/plot/std/axis/DefaultAxis.ts index 447f26de62..658c3362ad 100644 --- a/js/notebook/src/plot/std/axis/DefaultAxis.ts +++ b/js/notebook/src/plot/std/axis/DefaultAxis.ts @@ -45,6 +45,7 @@ export default class DefaultAxis { numIntws: any[]; axisLabelWithCommon: any; + showGridlineLabels: boolean; constructor(type: any) { this.axisType = type == null ? "linear" : type; // linear, log, time, category, nanotime @@ -68,6 +69,7 @@ export default class DefaultAxis { this.axisFixedLabels = {}; this.dateIntws = []; this.numIntws = []; + this.showGridlineLabels = true; this.setNumFixs(); }