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 e0bef35 commit dda8e93Copy full SHA for dda8e93
modules/hist/TPavePainter.mjs
@@ -95,7 +95,7 @@ class TPavePainter extends ObjectPainter {
95
}
96
97
// fill stats before drawing to have coordinates early
98
- if (this.isStats() && !(pp && pp._fast_drawing)) {
+ if (this.isStats() && !this.NoFillStats && !(pp && pp._fast_drawing)) {
99
100
let main = pt.$main_painter || this.getMainPainter();
101
@@ -1177,6 +1177,8 @@ class TPavePainter extends ObjectPainter {
1177
painter.UseContextMenu = true;
1178
1179
1180
+ painter.NoFillStats = (opt == "nofillstats");
1181
+
1182
switch (pave._typename) {
1183
case "TPaveLabel":
1184
painter.paveDrawFunc = painter.drawPaveLabel;
0 commit comments