Reputation: 381
How can I draw square instead of circle on LineChart in MPAndroidChart?
Upvotes: 2
Views: 804
Reputation: 51421
LineChart
only supports circles.
But a solution could be to combine Line-
and ScatterChart
in a CombinedChart
.
ScatterChart
to draw the squaresLineChart
without circles to draw the linesExample of CombinedChart
here.
Upvotes: 1