chart in real time
Posted: Wed Feb 25, 2015 3:09 pm
Can I with Steeama create dynamic chart per time period ? Example any speed of something in real time
Dmitry
Dmitry
Steema Software - Customer Support Forums
https://407832.verdetrade-hk.tech/support/
https://407832.verdetrade-hk.tech/support/viewtopic.php?f=10&t=15455
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();
}