lecho / hellocharts-android

Charts library for Android compatible with API 8+, several chart types with scaling, scrolling and animations 📊
Apache License 2.0
7.43k stars 1.61k forks source link

LineChartView can not make steps of 0.5f #555

Open xXSkyWalkerXx1 opened 1 year ago

xXSkyWalkerXx1 commented 1 year ago

I'm using the following command to create a x-axis between 0 and e€{x.0; x.5}.

chartData.setAxisXBottom(Axis.generateAxisFromRange(0f, xEndLineAftereffect, 0.5f)
                    .setName(context.getString(R.string.chart_stages_axisunit))
                    .setHasLines(hasLines)
            );

But it doesn't print the axis like 1, 1.5, ... instead of it prints 1, 2, 2, like you can see on the screenshot below.

Screenshot - 09 05 2023 , 20_32_53_(2)

I'm not sure, whether I'm making something wrong or whether it is a bug?

Best regards, xXSkyWalkerXx1