hellocharts-android
hellocharts-android copied to clipboard
One dot doesn't show.
One dot doesn't show.And The x axis
The left and right display are incomplete. Thx
++ for this issue. I have similar problem.
I use BubbleChartView
and I add points one by one. I need the first one to be visible when added. The thing is that Y axis is squeezed somehow.
I am able to reproduce the issue in your sample application:
The effect above appears when I change line 148
of BubbleChartActivity.java (https://github.com/lecho/hellocharts-android/blob/master/hellocharts-samples/src/lecho/lib/hellocharts/samples/BubbleChartActivity.java#L148)
to the following:
BubbleValue value = new BubbleValue(i, 0, 0);
Any idea how to solve this?
@MGasztold The padding is fixed, but a point is not displayed.
How is the padding issue fixed?
For me the Y axis is squeezed completely, see screenshot of the demo app in my previous post. Not only if you put single point but also if multiple points have the same Y coord. The same would happen if X coordinate is constant for all points.
The screenshot above is for line 148
of BubbleChartActivity.java being like this :
BubbleValue value = new BubbleValue(0, i, 0);
Same issue with linechartview. If all data's y-axis value are same, nothing will show in the chart. This looks like the viewport automatic scaling Caused.