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 a73ad1d commit 1979d00Copy full SHA for 1979d00
changes.md
@@ -7,6 +7,7 @@
7
4. Fix - use error plot by default in TH1 only when positive sumw2 entry exists
8
5. Fix - for TH2 box draw option draw at least 1px rect for non-empty bin
9
6. Fix - support transparancy (alpha) in TColor (#45)
10
+7. Fix - correct tooltip handling for graphs with lines and markers
11
12
13
## Changes in 4.4.2
scripts/JSRootPainter.more.js
@@ -1844,7 +1844,7 @@
1844
.attr("d", path)
1845
.style("fill", marker.fill)
1846
.style("stroke", marker.stroke);
1847
- if (nodes===null)
+ if ((nodes===null) && (this.draw_kind=="none"))
1848
this.draw_kind = (this.optionMark==3) ? "path" : "mark";
1849
}
1850
0 commit comments