From 860f71aa93273cc7b188734df46deca3245d2576 Mon Sep 17 00:00:00 2001 From: Sergey Linev Date: Wed, 17 Jul 2024 17:51:02 +0200 Subject: [PATCH] Fix - polybin fill attr --- modules/hist2d/TH2Painter.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hist2d/TH2Painter.mjs b/modules/hist2d/TH2Painter.mjs index cf95dc559..08675200d 100644 --- a/modules/hist2d/TH2Painter.mjs +++ b/modules/hist2d/TH2Painter.mjs @@ -1610,7 +1610,7 @@ class TH2Painter extends THistPainter { if (draw_colors && (colindx !== null)) item.style('fill', this._color_palette.getColor(colindx)); else if (draw_fill) - item.call('fill', this.createAttFill(gr).func); + item.call(this.createAttFill(gr).func); else item.style('fill', 'none'); if (draw_lines)