XY « LineChart « JFreeChart Q&A





1. Incorrect display of x-values on XY Line Chart    jfree.org

Incorrect display of x-values on XY Line Chart by MSC Wed Aug 03, 2005 2:11 am Hi I need immediate assistance with this issue if possible. I am using JFreeChart 0.9.18 to display an XY Line Chart. The X, Y pairs are : 0.0 , 0.0 3.0010286E-5 , 0.003065671338582677 6.0025748E-5 , 0.004335341338582677 9.0010086E-5 , 0.00772858937007874 1.2000965E-4 , 0.01226952007874016 1.5004691E-4 , ...

3. Creating disconnected XY line charts    jfree.org

Hi, I'm trying to crete an XYSeries chart that has disconnected points as well as connected points. I thought I might do this by making a XYSeriesCollection and then adding as many XYSeries to it as I needed. That way I could have a bunch of disconnected lines but have them still belong to one piece of data. I thought this ...

5. XY line chart?    jfree.org

Hi, can someone provide me with some sample codes for XY line chart? I am looking for a Jframe code which has one array that gives a generates a line chart from an array. any help is welcome or some pointers, as jfree doesnt have documention i was not able to create any charts. i

6. 3D Timeseries XY line charts    jfree.org

Hi, do not look any further. There is no specific "3D plot". All you need is a suitable 3D axis and a renderer which supports 3D. However, my attempts to generate a 3D XYplot (by using two NumberAxis3D and the XYLine3DRenderer) failed. The data points were rendered using 3D but not the axis. I then checked the sources, and it turned ...

7. Data area in XY line chart    jfree.org

New to JFreeChart. Appreciate any help. I am creating a few line charts. The Y axis of different chart has different unit (and different number). I saved the charts as PNG with the same width and height and they look good except for one problem. The width of the data area is different. It looks like it is because the number ...

8. Changing Line color -XY Line chart    jfree.org

Please I need your help... The following is my line chard part of the code: final DefaultCategoryDataset dataset = new DefaultCategoryDataset(); final String series1 = xyLabel; final JFreeChart chart = ChartFactory.createLineChart( title, // chart title xLabel, // domain axis label yLabel, // range axis label dataset, // data PlotOrientation.VERTICAL, // orientation true, // include legend true, // tooltips false // urls ...