如何添加两个TimeSeries JfreeChart

时间:2015-06-19 07:33:02

标签: jfreechart timeserieschart

我想添加两个或更多timeSeries以生成堆叠线图。 我在API中找不到任何东西。我试图手动完成但仍然无法正常工作。 API中是否有任何可以管理此功能的功能? 感谢

1 个答案:

答案 0 :(得分:0)

这很有用^^
rtp:RegulatTimePeriod实例。 当迭代两个系列的数据集时,如果没有当前rtp的记录或者通过值的总和更新现有的rtp,我们使用此代码添加新节点。

if(StackedSerie.getValue(rtp)!=null){         //stacked lines dataset
StackedSerie.addOrUpdate(rtp,(double)((float)v + StackedSerie.getValue(rtp).floatValue()));
                        }
                        else
                        {
                            StackedSerie.add(rtp,v);
                        }