MBagher
MBagher

Reputation: 381

How to draw squares instead of circles in MPAndroidChart?

How can I draw square instead of circle on LineChart in MPAndroidChart?

Upvotes: 2

Views: 804

Answers (1)

Philipp Jahoda
Philipp Jahoda

Reputation: 51421

LineChart only supports circles.

But a solution could be to combine Line- and ScatterChart in a CombinedChart.

  • use ScatterChart to draw the squares
  • use LineChart without circles to draw the lines

Example of CombinedChart here.

Upvotes: 1

Related Questions