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 df99daa commit 08c9b62Copy full SHA for 08c9b62
modules/hist2d/TScatterPainter.mjs
@@ -23,7 +23,8 @@ class TScatterPainter extends TGraphPainter {
23
/** @summary Draw axis histogram
24
* @private */
25
async drawAxisHisto() {
26
- const histo = this.createHistogram();
+ const need_histo = !this.getHistogram(),
27
+ histo = this.createHistogram(need_histo, need_histo);
28
return TH2Painter.draw(this.getDrawDom(), histo, this.options.Axis + ';IGNORE_PALETTE');
29
}
30
0 commit comments