Uses of Interface
org.jfree.chart.renderer.category.CategoryItemRenderer
-
Packages that use CategoryItemRenderer Package Description org.jfree.chart Core classes for JFreeChart includingJFreeChartandChartFactory.org.jfree.chart.plot Plot classes and related interfaces.org.jfree.chart.renderer.category Plug-in renderers for theCategoryPlotclass. -
-
Uses of CategoryItemRenderer in org.jfree.chart
Methods in org.jfree.chart with parameters of type CategoryItemRenderer Modifier and Type Method Description protected voidStandardChartTheme. applyToCategoryItemRenderer(CategoryItemRenderer renderer)Applies the settings of this theme to the specified renderer. -
Uses of CategoryItemRenderer in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return CategoryItemRenderer Modifier and Type Method Description CategoryItemRendererCategoryPlot. getRenderer()Returns a reference to the renderer for the plot.CategoryItemRendererCategoryPlot. getRenderer(int index)Returns the renderer at the given index.CategoryItemRendererCategoryPlot. getRendererForDataset(CategoryDataset<R,C> dataset)Returns the renderer for the specified dataset.Methods in org.jfree.chart.plot that return types with arguments of type CategoryItemRenderer Modifier and Type Method Description Map<Integer,CategoryItemRenderer>CategoryPlot. getRenderers()Returns a map containing the renderers that are assigned to this plot.Methods in org.jfree.chart.plot with parameters of type CategoryItemRenderer Modifier and Type Method Description intCategoryPlot. getIndexOf(CategoryItemRenderer renderer)Returns the index of the specified renderer, or-1if the renderer is not assigned to this plot.voidCategoryPlot. setRenderer(int index, CategoryItemRenderer renderer)Sets the renderer to use for the dataset with the specified index and sends a change event to all registered listeners.voidCategoryPlot. setRenderer(int index, CategoryItemRenderer renderer, boolean notify)Sets the renderer to use for the dataset with the specified index and, if requested, sends a change event to all registered listeners.voidCategoryPlot. setRenderer(CategoryItemRenderer renderer)Sets the renderer at index 0 (sometimes referred to as the "primary" renderer) and sends a change event to all registered listeners.voidCategoryPlot. setRenderer(CategoryItemRenderer renderer, boolean notify)Sets the renderer at index 0 (sometimes referred to as the "primary" renderer) and, if requested, sends a change event to all registered listeners.voidCategoryPlot. setRenderers(CategoryItemRenderer[] renderers)Sets the renderers for this plot and sends aPlotChangeEventto all registered listeners.Constructors in org.jfree.chart.plot with parameters of type CategoryItemRenderer Constructor Description CategoryPlot(CategoryDataset<R,C> dataset, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryItemRenderer renderer)Creates a new plot. -
Uses of CategoryItemRenderer in org.jfree.chart.renderer.category
Classes in org.jfree.chart.renderer.category that implement CategoryItemRenderer Modifier and Type Class Description classAbstractCategoryItemRendererAn abstract base class that you can use to implement a newCategoryItemRenderer.classAreaRendererA category item renderer that draws area charts.classBarRendererACategoryItemRendererthat draws individual data items as bars.classBoxAndWhiskerRendererA box-and-whisker renderer.classCategoryStepRendererA "step" renderer similar toXYStepRendererbut that can be used with theCategoryPlotclass.classDefaultCategoryItemRendererA default renderer for theCategoryPlotclass.classGanttRendererA renderer for simple Gantt charts.classGroupedStackedBarRendererA renderer that draws stacked bars within groups.classIntervalBarRendererA renderer that handles the drawing of bars for a bar plot where each bar has a high and low value.classLayeredBarRendererACategoryItemRendererthat represents data using bars which are superimposed.classLevelRendererACategoryItemRendererthat draws individual data items as horizontal lines, spaced in the same way as bars in a bar chart.classLineAndShapeRendererA renderer that draws shapes for each data item, and lines between data items (for use with theCategoryPlotclass).classMinMaxCategoryRendererRenderer for drawing min max plot.classScatterRendererA renderer that handles the multiple values from aMultiValueCategoryDatasetby plotting a shape for each value for each given item in the dataset.classStackedAreaRendererA renderer that draws stacked area charts for aCategoryPlot.classStackedBarRendererA stacked bar renderer for use with theCategoryPlotclass.classStatisticalBarRendererA renderer that handles the drawing a bar plot where each bar has a mean value and a standard deviation line.classStatisticalLineAndShapeRendererA renderer that draws shapes for each data item, and lines between data items.classWaterfallBarRendererA renderer that handles the drawing of waterfall bar charts, for use with theCategoryPlotclass.
-