是否可以在 JFreeChart 上仅显示所选类别的值?
图表 http://img200.imageshack.us/img200/8329/2npa.png
例如,我在上图中有三个类别,我想给用户一个选择选项,以仅查看所选类别的值。
这是我的 JFreeChart 创建代码:
lineDataset = new XYSeriesCollection();
JFreeChart result = ChartFactory.createXYAreaChart("", "Mesafe", "Seviye", lineDataset, PlotOrientation.VERTICAL, true, true, false);
plot = (XYPlot) result.getPlot();
ValueAxis axis = plot.getDomainAxis();
axis.setAutoRange(true);