We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd5548 commit 93316a3Copy full SHA for 93316a3
scripts/JSRootPainter.js
@@ -3630,7 +3630,8 @@
3630
.orient("right")
3631
.tickPadding(axisOffset)
3632
.tickSize(-tickSize, -tickSize / 2, 0)
3633
- .ticks(nbr1);
+ .ticks(nbr1)
3634
+ .tickFormat(function(d) { return d; });
3635
3636
var zax = this.draw_g.append("svg:g")
3637
.attr("class", "zaxis")
@@ -6325,7 +6326,7 @@
6325
6326
axis['fLabelFont'] = 42;
6327
axis['fChopt'] = "";
6328
axis['fName'] = "";
- axis['fTitle'] = "";
6329
+ axis['fTitle'] = this.histo.fZaxis.fTitle;
6330
axis['fTimeFormat'] = "";
6331
axis['fFunctionName'] = "";
6332
axis['fWmin'] = 0;
0 commit comments