1. 程式人生 > >JfreeChart TimeSeries add()方法小知識點

JfreeChart TimeSeries add()方法小知識點

如果你想讓你的時間軸精確到秒,則構造方法的引數為

TimeSeries history = new TimeSeries("實時名稱", [color=red]Second.class[/color]);
history.add([color=red]new Second(new Date()[/color]),整數值);

如果你只需讓你的時間軸精確到月,則構造方法的引數為
TimeSeries history = new TimeSeries("實時名稱", [color=red]Month.class[/color]);
history.add([color=red]new Month(new Date()[/color]),整數值);

說明:上面的Second及Month皆為org.jfree.data.time包下的類,而Date為java.util包下的類。