Java Code Examples for org.jfree.chart.renderer.category.CategoryItemRenderer#setBaseURLGenerator()
The following examples show how to use
org.jfree.chart.renderer.category.CategoryItemRenderer#setBaseURLGenerator() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractCategoryItemRendererTests.java From astor with GNU General Public License v2.0 | 5 votes |
/** * Check that the getSeriesURLGenerator() method behaves as expected. */ public void testGetSeriesURLGenerator() { CategoryItemRenderer r = new BarRenderer(); assertNull(r.getSeriesURLGenerator(2)); r.setSeriesURLGenerator(2, new StandardCategoryURLGenerator()); assertNotNull(r.getSeriesURLGenerator(2)); r.setSeriesURLGenerator(2, null); assertNull(r.getSeriesURLGenerator(2)); r.setBaseURLGenerator(new StandardCategoryURLGenerator()); assertNull(r.getSeriesURLGenerator(2)); }
Example 2
Source File: AbstractCategoryItemRendererTests.java From astor with GNU General Public License v2.0 | 5 votes |
/** * Check that the getSeriesURLGenerator() method behaves as expected. */ public void testGetSeriesURLGenerator() { CategoryItemRenderer r = new BarRenderer(); assertNull(r.getSeriesURLGenerator(2)); r.setSeriesURLGenerator(2, new StandardCategoryURLGenerator()); assertNotNull(r.getSeriesURLGenerator(2)); r.setSeriesURLGenerator(2, null); assertNull(r.getSeriesURLGenerator(2)); r.setBaseURLGenerator(new StandardCategoryURLGenerator()); assertNull(r.getSeriesURLGenerator(2)); }
Example 3
Source File: ChartFactory.java From astor with GNU General Public License v2.0 | 5 votes |
/** * Creates a Gantt chart using the supplied attributes plus default values * where required. The chart object returned by this method uses a * {@link CategoryPlot} instance as the plot, with a {@link CategoryAxis} * for the domain axis, a {@link DateAxis} as the range axis, and a * {@link GanttRenderer} as the renderer. * * @param title the chart title (<code>null</code> permitted). * @param categoryAxisLabel the label for the category axis * (<code>null</code> permitted). * @param dateAxisLabel the label for the date axis * (<code>null</code> permitted). * @param dataset the dataset for the chart (<code>null</code> permitted). * @param legend a flag specifying whether or not a legend is required. * @param tooltips configure chart to generate tool tips? * @param urls configure chart to generate URLs? * * @return A Gantt chart. */ public static JFreeChart createGanttChart(String title, String categoryAxisLabel, String dateAxisLabel, IntervalCategoryDataset dataset, boolean legend, boolean tooltips, boolean urls) { CategoryAxis categoryAxis = new CategoryAxis(categoryAxisLabel); DateAxis dateAxis = new DateAxis(dateAxisLabel); CategoryItemRenderer renderer = new GanttRenderer(); if (tooltips) { renderer.setBaseToolTipGenerator( new IntervalCategoryToolTipGenerator( "{3} - {4}", DateFormat.getDateInstance())); } if (urls) { renderer.setBaseURLGenerator(new StandardCategoryURLGenerator()); } CategoryPlot plot = new CategoryPlot(dataset, categoryAxis, dateAxis, renderer); plot.setOrientation(PlotOrientation.HORIZONTAL); JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend); return chart; }
Example 4
Source File: ChartFactory.java From astor with GNU General Public License v2.0 | 4 votes |
/** * Creates a stacked bar chart with a 3D effect and default settings. The * chart object returned by this method uses a {@link CategoryPlot} * instance as the plot, with a {@link CategoryAxis3D} for the domain axis, * a {@link NumberAxis3D} as the range axis, and a * {@link StackedBarRenderer3D} as the renderer. * * @param title the chart title (<code>null</code> permitted). * @param categoryAxisLabel the label for the category axis * (<code>null</code> permitted). * @param valueAxisLabel the label for the value axis (<code>null</code> * permitted). * @param dataset the dataset for the chart (<code>null</code> permitted). * @param orientation the orientation (horizontal or vertical) * (<code>null</code> not permitted). * @param legend a flag specifying whether or not a legend is required. * @param tooltips configure chart to generate tool tips? * @param urls configure chart to generate URLs? * * @return A stacked bar chart with a 3D effect. */ public static JFreeChart createStackedBarChart3D(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls) { if (orientation == null) { throw new IllegalArgumentException("Null 'orientation' argument."); } CategoryAxis categoryAxis = new CategoryAxis3D(categoryAxisLabel); ValueAxis valueAxis = new NumberAxis3D(valueAxisLabel); // create the renderer... CategoryItemRenderer renderer = new StackedBarRenderer3D(); if (tooltips) { renderer.setBaseToolTipGenerator( new StandardCategoryToolTipGenerator()); } if (urls) { renderer.setBaseURLGenerator(new StandardCategoryURLGenerator()); } // create the plot... CategoryPlot plot = new CategoryPlot(dataset, categoryAxis, valueAxis, renderer); plot.setOrientation(orientation); if (orientation == PlotOrientation.HORIZONTAL) { // change rendering order to ensure that bar overlapping is the // right way around plot.setColumnRenderingOrder(SortOrder.DESCENDING); } // create the chart... JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend); return chart; }