Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
195
How can I refresh my X-Axis
posted

Hi. I add at certain intervals data to the chart with the following code:

m_XAxisValues.add(Integer.toString(m_CurXValue));

m_IEPE1.add(value1);

And i refresh with

for(Series series: m_LineChart.series()) {
      series.notifyDataReset();
}

But X-Axis is not refresh. What is wrong?




Parents Reply Children