Reputation: 3031
This is possible to hide series(title and line) in legend chart, lise on chart is still visible? I wnat only hide data in legend my I want to see my series on chart. I don;t want to hide all series in legend, only few.
Upvotes: 5
Views: 3129
Reputation: 32391
You can hide some of the legend items this way:
seriesRenderer.setShowLegendItem(false);
Upvotes: 15