From 52e36339d5c6710d0351b41543b1cb7b660a5b34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pior?= Date: Thu, 6 Sep 2018 15:02:26 +0200 Subject: [PATCH] #7779 fix histogram labeling --- js/notebook/src/plot/std/axis/DefaultAxis.ts | 2 ++ 1 file changed, 2 insertions(+) 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(); }