edi233
edi233

Reputation: 3031

achartengine and hide series in legend

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

Answers (2)

krunal shah
krunal shah

Reputation: 364

mRenderer.setShowLegend(false);

Upvotes: 2

Dan D.
Dan D.

Reputation: 32391

You can hide some of the legend items this way:

seriesRenderer.setShowLegendItem(false);

Upvotes: 15

Related Questions