The y axis is okay. But the Time and the Date make problems.
Incoming is a long number "20050101153010" that meens "yyyymmddhhmmss"
My Dataset:
Code: Select all
private XYDataset createDatasetFromFile(){
final XYSeries seriesVmin = new XYSeries("VMin");
final XYSeries seriesVmax = new XYSeries("EVax");
//....
seriesVmin.add(20050101153000, 1);
seriesVmin.add(20050101160000, 2);
seriesVmin.add(20050101163000, 3);
seriesVmin.add(20050101170000, 4);
//..
}
Now I see only 01:00:10.000. I don't know what I do wrong.
How can I convert the "yyyymmddhhmmss" number to a compatible cfreechart number.
I read about the 01-01-1970, but I don't under stand it

Best Regards
Luna82