I'm trying to define an applet with a chart that have to be updated every n milliseconds. For example every 500 milliseconds. This is a part of the code:
dataSet = new DynamicTimeSeriesCollection(1, 200, new Millisecond());
dataSet.setTimeBase(new Millisecond());
When I launch the application it returns me a NullPointerException raised by the second line. If I replace Milliseconds with Seconds it works.
The question is: how can I set a period of n milliseconds without having exceptions?
Thanks