ow, I have working with Java Application using the library EasyChart
V.2.7.3.
I want to make the chart changed dynamically having constant maximum
sample count.
Event data comming into the chart has its own index, but the index of
data
has not been changed after the number of incomming data's count has
exceeded the maximum sample count.
For instance, If I have set the sample count as 5,
the results are following.
----------------------------------------------------------------------------
0 1 2 3
0 1 2 3 4
<========== mChartData.appe ndSample(series , sample,
false);
1 2 3 4 4
<========== mChartData.appe ndSample(series , sample,
false);
2 3 4 4 4
--------------------------------------------------------
As you know, if I set the third parameter of appendSample() method as
true, the setting of the maximun
sample count has no meaning.
After all, I can't handle the selected chart sample in mouse event.
How can I overcome this situation?
V.2.7.3.
I want to make the chart changed dynamically having constant maximum
sample count.
Event data comming into the chart has its own index, but the index of
data
has not been changed after the number of incomming data's count has
exceeded the maximum sample count.
For instance, If I have set the sample count as 5,
the results are following.
----------------------------------------------------------------------------
0 1 2 3
0 1 2 3 4
<========== mChartData.appe ndSample(series , sample,
false);
1 2 3 4 4
<========== mChartData.appe ndSample(series , sample,
false);
2 3 4 4 4
--------------------------------------------------------
As you know, if I set the third parameter of appendSample() method as
true, the setting of the maximun
sample count has no meaning.
After all, I can't handle the selected chart sample in mouse event.
How can I overcome this situation?