scatter « Plot « JFreeChart Q&A





1. JfreeChart: Scatter Plot moving X and Y Axises    stackoverflow.com

I just started using JFreeChart lib. I have a XY scatter chart with some negative plot points. The X and Y axises stay at the bottom and left sides of the ...

2. JFreeChart Scatter Plot Lines    stackoverflow.com

I'm trying to create a graph with JFreeChart, however it doesn't get the lines right. Instead of connecting the points in the order I put them, it connects the points from ...

3. JAVA - JFreeChart - Selection in a Fast Scatter Plot    stackoverflow.com

Here my problem. I currently need to make selecting dots available within the FastScatterPlot using a lasso or this kind of thing. But I don't even know where to begin. Does ...

4. Making a Scatter Plot Using 2d array and JfreeChart    stackoverflow.com

This is my First Month with Java, so I apologize for my stupid question in advance. I'm trying to make a simple program using Jfreechart. I want to display my 2D ...

5. JFreeChart - scatter plot and line plot on one picture    stackoverflow.com

I need to have scatter data and a line plot at the same picture. I'm able to create both plots separately but I don't know how to combine them.

6. combined chart for a scatter plot?    jfree.org

Hi:-) I implemented in my program a Line Chart with 2 until 4 y-Axes as a combined chart. It worked and looks really good. I tried to do the same with a scatter plot, but my test didnt really work:-( Is it possible to implement a combined scatter chart (2 scatter plots in a chartpanel?)? Do you know if there is ...

7. select data values when clicked on scatter plot    jfree.org

hi i am having trouble getting the data values that correspond to a click on a point on the scatter plot. my chartpanel is called "panel" and i want to get the data values when i click on the plot. please help me in this. also as im new to using jfreechart,please do explain what to do and which methods to ...

8. How can I create a scatter plot which may have Strings    jfree.org

Hi, Can any one help me where exactly I can find the jar file to create a scatter plot which can have Strings in co-ordinates, for example my situation is I can have name of the cars in the X axis , and MPG in the Y-axis.Is there any scatter plot example which internally represents Strings as int or float .If ...

9. Scatter plot customization    jfree.org

Hello, Sorry for the newby question. I am using Jasper reports for a customer project, and the reports are to include scatter plots for which Jasper uses JFreeChart. I have been able to get the basic functionality to work, with color symbols representing the data points. (For some reason, my x-axis label doesn't appear, which I'm guessing is more of a ...





10. Variation on scatter / wind chart / vector plot.    jfree.org

Hello, I am using jfreechart, and I would like to produce a 'scatter plot', where each of the points is represented by (for example) a small circle, but also has a small 'tail' - a small straight line leading from the point in some direction (no arrow head required). The purpose of this is to show the way in which the ...

11. scatter plot chart using JChart api(jCharts-0.7.5.jar)    jfree.org

i am working on chart generation and i am using JFreechart,JCommon and JChart jar files.I got some examples on scatter plot graphs but in all the examples graph points are joined(line drawn between two points).So i want the scatter plot graph without any joints between the points.....can someone plz send me some sample source code

12. Scatter Plot , XYDotRenderer    jfree.org

Thanks for the response. As suggested I have extended the renderer and override the getItemPaint method and I am able to change the color of few points. However, I am not able to change the color of area of interest. My point of interest is dynamic and derived by movable ellipse. Like, I have a movable ellipse drawn over a scatter ...

13. Scatter Plot    jfree.org

14. scatter plot    jfree.org

16. highlight single item of scatter plot    jfree.org

Hi David, I am able to add annotation near the point using following code and adding it to corresponding plot XYShapeAnnotation anno=new XYShapeAnnotation(new Ellipse2D.Float(210.0f,1165.0f,0.1f,0.1f)); XYPlot plot= chart.getXYPlot(); plot.addAnnotation(anno); Now problem I see is that the size of item decreases when zooming in but the annotation size remains the same.How to change size of annotation according to the zoom in





17. XYPLot: place domainValues in the scatter plot    jfree.org

XYPLot: place domainValues in the scatter plot by dacosta Tue Nov 03, 2009 12:19 am Hi, Below my code with which i'm trying to place the corresponding numbers beside the shapes (balls) in the plot. However, the lines renderer.setBaseItemLabelGenerator(new StandardXYItemLabelGenerator()); renderer.setBaseItemLabelsVisible(true); don't seem to get me anywhere. I'v been staring my eyes silly and abusing google but every time i ...

18. 3D Scatter Plot    jfree.org

19. Dynamic Scatter Plot    jfree.org

I have been searching for this, but no luck finding an answer. I am trying to make a dynamic scatter plot. The way it works is: -I connect to a TCP/IP port which sends out data every second -I then have a while cycle that treats this data and puts it into the series. -The chart shouldn't have more than 500/1000 ...

20. Scatter Plot , XYDotRenderer Please help !!!    jfree.org

Scatter Plot , XYDotRenderer Please help !!! by javac2005 Thu Feb 18, 2010 8:46 pm Hello, I would like to change the color of points/dots on a scatter plot base on z value (x,y,z). How can I change the color of a single dot/point in a scatter plot base on the z value ? . Z has only 3 value ...

21. Customize X and Y value for Scatter Plot    jfree.org

Hi guys, I'd like to put a set of strings as the values on X and Y axis. Example; I need to put this {10.207.160.1, 10.207.160.2, ..... 10.207.160.10} for X axis and {219.22.140.30, ..... } for Y value. I really hope that this is can be done in Jfreechart's scatter plot. Thank you for your time and help. Regards, Mustafa

22. Scatter Plot dots    jfree.org

I just wonder why "Jerremy" hasnt been already banned from this forum. @Dimitri: To answer your question: I just had a look at the render() method of FastScatterPlot and found that the "shape" is hardwired to be a Rectangle with a width and height of 1. In order to change that, you will have to override this method in a subclass ...

23. Problem Making a Scatter Plot Using 2d array and JfreeChart    jfree.org

This is my First Month with Java, so I apologize for my stupid question in advance. I'm trying to make a simple program using Jfreechart. I want to display my 2D array on the scatter plot. here is the code: package myappthatusesjfreechart; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartFrame; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.PlotOrientation; import org.jfree.data.general.DefaultPieDataset; public class MyAppThatUsesJFreeChart { public static void main(String[] args) ...