문제

When I dynamically plot values I wish to display the recent plotted value on line graph (drawn with the help of AChartEngine library). In other words I wish to scroll my line graph along x-axis towards left to show the latest plotted value and hide the oldest plotted value. How to achieve this?

도움이 되었습니까?

해결책

Whenever you add values to the datasets, if you call chartView.repaint(); the chart is updated with the new values.

In order to have the values scroll to the left, you need to change the visible area on the X axis:

renderer.setXAxisMin(theMinimumVisibleValue);
// this may be optional
// renderer.setXAxisMax(theMaximumVisibleValue);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top