SWT and ChartProgressListener Events
SWT and ChartProgressListener Events
I'm trying to listen to ChartProgressEvents in order to update a label with the crosshair value on a graph, but it seems that the event is not registering in SWT. Is there a proper way to handle events in swt that is different from awt? Thanks!
Hum not ChartProgressEvents, you need to subclass ChartComposite and override the chartProgress method (just like the with ChartPanel class):
HTH,
Henry
Code: Select all
public void chartProgress(ChartProgressEvent event) {
// does nothing - override if necessary
}
Henry