Skip to content

Commit

Permalink
#7779 fix histogram labeling
Browse files Browse the repository at this point in the history
  • Loading branch information
piorek committed Sep 6, 2018
1 parent fcd1a85 commit 52e3633
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/notebook/src/plot/std/axis/DefaultAxis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -68,6 +69,7 @@ export default class DefaultAxis {
this.axisFixedLabels = {};
this.dateIntws = [];
this.numIntws = [];
this.showGridlineLabels = true;

this.setNumFixs();
}
Expand Down

0 comments on commit 52e3633

Please sign in to comment.