如何使用afreechart api创建折线图?

时间:2013-11-18 11:06:28

标签: android

我是afree图表api的新手。我用这个创建了饼图和柱形图,但我不知道如何用这个api创建折线图?

AFreeChart chart = ChartFactory.createLineChart
                (
                    "Line Chart Demo",  // title
                    "Date",             // x-axis label
                    "Price Per Unit",   // y-axis label
                    dataset,            // data (how to create this dataset)
                    PlotOrientation.VERTICAL,
                    true,               // create legend?
                    true,               // generate tooltips?
                    false               // generate URLs?
                );

0 个答案:

没有答案