jfreechart的一个小问题

今天在写实时曲线图时报了这样一个错!在网上找了找发现中文的很少!特此写下来与大家共享!
03:07:35 ERROR org.apache.jsp.html.portal.status_jsp._jspService(status_jsp.java:996) : org.jfree.data.general.SeriesException: You are trying to add data where the time period class is org.jfree.data.time.Year, but the TimeSeries is expecting an instance of org.jfree.data.time.Day.
org.jfree.data.general.SeriesException: You are trying to add data where the time period class is org.jfree.data.time.Year, but the TimeSeries is expecting an instance of org.jfree.data.time.Day.

报错时的代码:
TimeSeries timeseries = new TimeSeries("平均",Day.class);

timeseries.add(new Year( 2010), 12);


很明显是我把上下两个地方写的不一致所致的!呵呵!一时疏忽!


现改正如下:

TimeSeries timeseries = new TimeSeries("平均",Year.class);

timeseries.add(new Year( 2010), 102);

另外提醒别把报到错了哦!
应该是 org.jfree.data.time.*;哦

有不足之处望大家指点!!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值