Try
XYPlot.getDatasetRenderingOrder();
XYPlot.setDatasetRenderingOrder(DatasetRenderingOrder order);
Hope it helps.
Search found 3 matches
- Mon Aug 08, 2005 7:38 pm
- Forum: JFreeChart
- Topic: draw on XYSeries on top of others
- Replies: 3
- Views: 4894
- Mon Aug 08, 2005 7:30 pm
- Forum: JFreeChart
- Topic: Marking Points on XYSeries, a diff. point for each series
- Replies: 10
- Views: 14836
Here are some pieced together snippets from my project. They may not compile, but they should give you and idea of what I've been able to do without subclassing. /* Create chart with our data points */ JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend); XYPlot plot...
- Mon Aug 08, 2005 7:16 pm
- Forum: JFreeChart
- Topic: Using Legend to Configure Series Shapes and Colors
- Replies: 2
- Views: 6195
Using Legend to Configure Series Shapes and Colors
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...