Size « Series « JFreeChart Q&A





1. Size of series shapes configurable?    jfree.org

try { //there is no ar.getShapeCount() for (int i = 0; i < 100; i++) { //only the first 100 series is enough Shape shape = ar.getSeriesShape(i); ar.setShape(ShapeUtilities.createTranslatedShape(shape, 0.3, 0.5)); //test values }//next series } catch (Exception ...

2. Time series labels "squeezed" when graph size is s    jfree.org

Time series labels "squeezed" when graph size is s by iqlas Sat Nov 11, 2006 1:54 am I am using the Timeseries graph and it seems like the graph labels (like time on the x-axis) are "squeezed" when the graph ploting size is small. However, when the size is big, there is no problem Here is the code I am ...

3. Need Help - drawing chart with series of different sizes    jfree.org

I am using ChartFactory.createXYLineChart passing XYDataSet. Dataset containes series of different sizes like Series 1 - 6 items Series 2 - 4 items Series 3 - 10 items I implemented getItemCount(int series) function correctly to return the itemcount accordingly. But it creates the chart with min no of points on all series, in this case 4 points for all three series. ...