lecho/hellocharts-android

Line graph isn't fix it the chart in sometime

Opened this issue · 2 comments

Hello,

I have a line chart and I want it will display on the control with default zoom level, no user's interaction.

But sometimes, the chart seems bigger than the control so it will be cut off and this is not good.
image

image

image

Can anyone give me some idea to fix it?
Thank you

give some line width it will work.

Line line = new Line(values);
line.setColor(Color.parseColor("#0abe51")).setCubic(true);

    line.setStrokeWidth(2);

#446

I fixed it here