Scatterplot « Plot « JFreeChart Q&A





1. More than one backgroundcolor in een Scatterplot    jfree.org

More than one backgroundcolor in een Scatterplot by Jan-Martijn Wed Sep 21, 2005 3:05 pm Hey, Could someone tell me if it is possible to use more than 1 backgroundcolor in a Scatterplot? I have to highlight some areas in de chart wish are good, en the areas that are terribly wrong. I read someting a bout Markers, but I ...

2. scatterPlot    jfree.org

3. how to show tickslabel with scatterplot    jfree.org

I have create a graph which shows years and salaries and I want to show a label mark every 5 years and a mark tevery years on my horizontal axis .My graph is a scatter graph and I find to show the label every 5 years,not to show ticks marks every years .Can somebody help me ? Here is my code ...

4. change size on the plot in a ScatterPlot    jfree.org

I like to change the size on the plot. How can I do? I have try to find a solution the whole day and now my hope are to some of you. The following code is the basic stuff for my chart. Please /Mike JFreeChart chart = ChartFactory.createScatterPlot( //skapar diagram "Scatter-plot diagram", // chart title "X", // x axis label "Y", ...

5. Two or more XYDatasets in ScatterPlot    jfree.org

I want to have two or more sets of data in my ScatterPlot. How should I do, is it possible? The following code I use at the moment, because the ScatterPlot require the type XYDataset, but it is only one set of data. I can not find data.add() or something like this.... please help me /Mike XYDataset data = createDataset(); JFreeChart ...

6. Performance in ScatterPlot chart problem!!!    jfree.org

khanhlv wrote:It seems that i can not use FastScratterPlot because i need the value in x-axis and y-axis are double not float:(! Have any other solution? Can i use other chart beside the scratter chart??? Other way, is there any example of FastScatterPlot?? Why not try copying the code for FastScatterPlot and simply change the floats to doubles? At least that ...

7. one value in ScatterPlot    jfree.org

Dear All , I've create an ScatterPlot but if I've only a data , day format, as series1 = new TimeSeries("Test",Day.class ); series1.add(new Day( data.get(Calendar.DAY_OF_MONTH ), data.get(Calendar.MONTH )+1, data.get(Calendar.YEAR )), 30); I see this ! 00:00:00.000 why this there are a way for see my date if there is only one ? Thank You

8. ScatterPlot    jfree.org

1. Create two SymbolAxis, one using the array {"IP1",..."IP6"}, and one using the array {"SourceIP1",..."SourceIP5"}. The axes will then display the range of 0 to 5 or 4, respectively, and instead of showing the numerci tick marks 0, 1, 2, ..., they will show the entries of the above array. It is up to you to decide which axis is the ...

9. Polygon in ScatterPlot    jfree.org