File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -153891,7 +153891,8 @@ class TGraph2DPainter extends ObjectPainter {
153891153891 const lvl_zmin = Math.max(levels[lvl], fp.scale_zmin),
153892153892 lvl_zmax = Math.min(levels[lvl+1], fp.scale_zmax);
153893153893
153894- if (lvl_zmin >= lvl_zmax) continue;
153894+ if (lvl_zmin >= lvl_zmax)
153895+ continue;
153895153896
153896153897 const size = Math.floor(countSelected(lvl_zmin, lvl_zmax) / step),
153897153898 index = new Int32Array(size),
@@ -153997,7 +153998,7 @@ class TGraph2DPainter extends ObjectPainter {
153997153998 if (!this.options.Circles || this.options.Color)
153998153999 color = palette?.calcColor(lvl, levels.length) ?? this.getColor(graph.fMarkerColor);
153999154000
154000- const pr = pnts.createPoints({ color, fill: 'white', style: this.options.Circles ? 4 : graph.fMarkerStyle }).then(mesh => {
154001+ const pr = pnts.createPoints({ color, fill: this.options.Circles ? 'white' : undefined , style: this.options.Circles ? 4 : graph.fMarkerStyle }).then(mesh => {
154001154002 mesh.graph = graph;
154002154003 mesh.fp = fp;
154003154004 mesh.tip_color = (graph.fMarkerColor === 3) ? 0xFF0000 : 0x00FF00;
You can’t perform that action at this time.
0 commit comments