AChartEngine does not display the maximum chart value

前端 未结 1 873
我在风中等你
我在风中等你 2021-01-23 02:59

I am trying to display horizontal bar chart using AChartEngine.

In the bar chart, ChartValues should be displayed. (I am using XYSeriesRenderer.setDisplayChartValues(tru

相关标签:
1条回答
  • 2021-01-23 03:22

    You can manually set the maximum Y axis value such as you will have enough space for the maximum value to be displayed.

    myRenderer.setYAxisMax(150);
    
    0 讨论(0)
提交回复
热议问题