hellocharts-android icon indicating copy to clipboard operation
hellocharts-android copied to clipboard

About the problem that the y-axis is not displayed.

Open YongfaWang opened this issue 3 years ago • 0 comments

My x-axis is displayed normally, but the y-axis is not displayed. How can I solve this? Where is the root of the problem?? This is my email: [email protected] && [email protected] I am very grateful to you for solving this problem for me Here is my code ↓:

` List<AxisValue> axisX = new ArrayList<>(); for(int index = 0; index < GPST.size(); index++) axisX.add(new AxisValue(index).setLabel(GPST.get(index)));

                    List<AxisValue> axisY = new ArrayList<>();
                    for(int index = 0; index < Dist.size(); index++) {
                        axisY.add(new AxisValue(index).setLabel(Dist.get(index)));
                    }

                    // This is Y axis
                    Axis axis1 = new Axis();
                    axis1.setValues(axisX);
                    axis1.setTextColor(Color.BLUE);

                    // This is Y axis
                    Axis axis2 = new Axis();
                    axis2.setValues(axisY);

                    data.setAxisXBottom(axis2);
                    data.setAxisYLeft(axis1);
                    lineChartView.setLineChartData(data);

`

YongfaWang avatar Aug 10 '21 12:08 YongfaWang