Can I with Steeama create dynamic chart per time period ? Example any speed of something in real time
Dmitry
chart in real time
Re: chart in real time
Hello Dimitry,
Having a series created on a chart, in this case tChart1, this code seems to work fine for me in a Swing application:
If you still find problems with it, could you please arrange a simple example project we can run as-is to reproduce the situation you are experiencing?
Having a series created on a chart, in this case tChart1, this code seems to work fine for me in a Swing application:
Code: Select all
private void setTimer() {
ActionListener taskPerformer = new ActionListener() {
public void actionPerformed(ActionEvent e) {
tChart1.getSeries(0).fillSampleValues();
}
};
new javax.swing.Timer(100, taskPerformer).start();
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: chart in real time
Yeray, help me realize classic speed chart
1. chart have to move left to right
2. datas must classes fifo
Dmitry
1. chart have to move left to right
2. datas must classes fifo
Dmitry
Re: chart in real time
Hello Dimitry,
Take a look at the RealTime demo in the Swing Features Demo:
Take a look at the RealTime demo in the Swing Features Demo:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: chart in real time
thank you
be sure to look
although I have already realized myself
be sure to look
although I have already realized myself