1. Adding labels to each point on a XYScatterChart any ideas? jfree.orgXYSeriesCollection 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); } ... |