XYScatterChart « Label « JFreeChart Q&A





1. Adding labels to each point on a XYScatterChart any ideas?    jfree.org

XYSeriesCollection xYSeriesCollection = new XYSeriesCollection(); for(int i=0;i<10;i++) { XYSeries xYSeries = new XYSeries(new Integer(i).toString()); xYSeries.add(i,1); xYSeriesCollection.addSeries(xYSeries); } ...