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.
2 parents 6484d8e + b3d33e3 commit f360887Copy full SHA for f360887
MPChartLib/src/main/java/com/github/mikephil/charting/charts/Chart.java
@@ -762,6 +762,9 @@ protected void drawMarkers(Canvas canvas) {
762
for (Highlight highlight : mIndicesToHighlight) {
763
764
IDataSet set = mData.getDataSetByIndex(highlight.getDataSetIndex());
765
+ if (!set.isVisible()) {
766
+ continue;
767
+ }
768
769
Entry e = mData.getEntryForHighlight(highlight);
770
0 commit comments