如果你想让你的时间轴精确到秒,则构造方法的参数为
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包下的类。
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包下的类。