shape « Series « JFreeChart Q&A





1. turning off series shapes on a label?    jfree.org

by mjg Wed Oct 12, 2005 8:27 am david.gilbert wrote:I can reproduce this problem with 1.0.0-pre2, but not with 1.0.0-rc1. Can you triple check? Sorry for taking years to do this. Yes, just triple checked, this is definitely happening with -rc1. Here is a more complete version of the code in question: Code: Select all ...

2. Using Legend to Configure Series Shapes and Colors    jfree.org

In my project, I have a simple XY plot with single range and domain, but multiple series. This works great, but I have a requirement that the user be able to configure the shape and color used to plot each series, and I'm trying to find the easiest way to fufil this requirement. When you right click the chart, and open ...

3. Unique shape for each timeseries line, just at one point?    jfree.org

For B/W print, I would like to be able to draw the timeseries with a SINGLE unique shape inserted on the line. The examples I see in the JFree documentation inserts a shape at each data point, but this clutters up a graph with a lot of close points. Is there a way to have only one such shape for each ...

4. shapes series    jfree.org

by david.gilbert Thu Feb 02, 2006 3:38 pm I think you are adding to your own confusion. First, you posted code about a CategoryPlot, then posted an image showing a time series chart (which is based on an XYPlot). Then, the last image you've posted uses a CategoryPlot again, but I'm guessing that the LabelGenerator class you are using is ...

5. different shapes for each series in the chart    jfree.org

Is it possible to chart each series with a different shape? For example, the first series would be use a 3D bar, and the next series would use a cylinder? Or one series would use a 2D bar with a striped background, while the next series would still be a 2D bar, but have a different pattern? I am new to ...

7. series legend shapes not accurate    jfree.org

One of my charts has 4 XYseries in it. I've set each series to render a rectangle at each point in their plot using renderer.setShape(new Rectangle...). The legend at the bottom of the chart that shows which series goes with which color has the incorrect shapes though. Instead of all rectangles it shows rectangles, triangles, and circles. I guess using the ...

8. Circumscribing a triangle (series) shape!    jfree.org

Hello All, I'm using CategoryDataSet for my plot that's created using createBarChart(); I've two shapes - a triangle and a circle lying on the same line in the plot. While I'm able to connect the said shapes using CategoryLineAnnotation annotation, I'm not able to circumscribe the triangle, I mean, if I use the two datasets with equal values for rendering triangle ...

9. Custom series shape set?    jfree.org

How can I change the default series shapes? E.g. I would like to have a square for the first item and circles for the remaining items. The shapes are drawn in DefaultDrawingSuppler with a static method createStandardSeriesShapes(). I can work around by instantiating a new DefaultDrawingSupplier with the last parameter set with my own shapes, but I find this not very ...