Border « Component « JFreeChart Q&A





2. remove border of grant chart???    jfree.org

3. Graphic outline with rounded borders    jfree.org

All the graphs are generated as a rectangle image. I have been trying to set a background Image (from Image2D API) using: plot.setBackgroundImage(Image). ON background image i have painted a rounded rectangle using RoundRectangle2D class. I have succeded, but the quality of the of the Image from Image2D is very poor: 1) rounded corners , even with antialising are looking bad ...

4. Border problem    jfree.org

5. border issue    jfree.org

6. Removing (some) LegendItems and gray border    jfree.org

Hello all, I find JFreeChart a wonderful tool, but I have been running into some problems: A) Is there anyway to remove some of the LegendItems? In my example I would like to have only the 10 most significant (highest) values. I DLed the source code, and directly accessed the LegendItem list inside the plot, however I get a concurrent exception ...

7. Shape border in SHAPES StandardXYItemRenderer    jfree.org

Hi All: Im trying to set a border to the shapes in my render: Code: Select all StandardXYItemRenderer renderer = new StandardXYItemRenderer(StandardXYItemRenderer.SHAPES, ttg, urlg); int totalSeries = xyDataset.getSeriesCount(); ...

8. Remove Gray Border    jfree.org

public BufferedImage getchartBufferedImage(int width, int height, Image ChartbackgroundImage) { this.chart.removeLegend(); this.chart.setTitle(""); this.chart.getCategoryPlot().getDomainAxis().setVisible(false); this.chart.getCategoryPlot().getRangeAxis().setVisible(false); this.chart.setBorderVisible(false); this.chart.setBackgroundImageAlpha(1.0f); this.chart.getCategoryPlot().setBackgroundAlpha(1.0f); StackedBarRenderer renderer = (StackedBarRenderer) this.chart.getCategoryPlot().getRenderer(); System.out.println(renderer.isDrawBarOutline()); renderer.setDrawBarOutline(false); this.chart.getPlot().setBackgroundImageAlpha(1.0f); return this.chart.createBufferedImage(width, ...

9. Border thickness ?    jfree.org





10. Remove Chart's gray border    jfree.org

11. Border to Subtitles    jfree.org

12. Borders and backgrounds    jfree.org

13. Border around the chart    jfree.org

14. Black Border    jfree.org

15. Remove border around chart    jfree.org

This is fine for plots, but how can I remove the border from around a pie chart? I have successfully removed the border around the chart and title together by using setBorderVisible(false), but there is still a border around the pie chart itself which I can't seem to get rid of. Any help will be greatly appreciated! Thanks, Justin