Uses of Interface
org.jfree.chart.renderer.xy.XYItemRenderer
| Package | Description |
|---|---|
| org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel. |
| org.jfree.chart.plot |
Plot classes and related interfaces.
|
| org.jfree.chart.renderer.xy |
Plug-in renderers for the
XYPlot class. |
-
Uses of XYItemRenderer in org.jfree.chart
Methods in org.jfree.chart with parameters of type XYItemRenderer Modifier and Type Method Description protected voidStandardChartTheme. applyToXYItemRenderer(XYItemRenderer renderer)Applies the settings of this theme to the specified renderer. -
Uses of XYItemRenderer in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return XYItemRenderer Modifier and Type Method Description XYItemRendererXYPlot. getRenderer()Returns the renderer for the primary dataset.XYItemRendererXYPlot. getRenderer(int index)Returns the renderer with the specified index, ornull.XYItemRendererXYPlot. getRendererForDataset(XYDataset dataset)Returns the renderer for the specified dataset (this is either the renderer with the same index as the dataset or, if there isn't a renderer with the same index, the default renderer).Methods in org.jfree.chart.plot with parameters of type XYItemRenderer Modifier and Type Method Description intXYPlot. getIndexOf(XYItemRenderer renderer)Returns the index of the specified renderer, or-1if the renderer is not assigned to this plot.voidCombinedDomainXYPlot. setRenderer(XYItemRenderer renderer)Sets the item renderer FOR ALL SUBPLOTS.voidCombinedRangeXYPlot. setRenderer(XYItemRenderer renderer)Sets the item renderer FOR ALL SUBPLOTS.voidXYPlot. setRenderer(int index, XYItemRenderer renderer)Sets the renderer for the dataset with the specified index and sends a change event to all registered listeners.voidXYPlot. setRenderer(int index, XYItemRenderer renderer, boolean notify)Sets the renderer for the dataset with the specified index and, if requested, sends a change event to all registered listeners.voidXYPlot. setRenderer(XYItemRenderer renderer)Sets the renderer for the primary dataset and sends a change event to all registered listeners.voidXYPlot. setRenderers(XYItemRenderer[] renderers)Sets the renderers for this plot and sends aPlotChangeEventto all registered listeners.Constructors in org.jfree.chart.plot with parameters of type XYItemRenderer Constructor Description XYPlot(XYDataset dataset, ValueAxis domainAxis, ValueAxis rangeAxis, XYItemRenderer renderer)Creates a new plot with the specified dataset, axes and renderer. -
Uses of XYItemRenderer in org.jfree.chart.renderer.xy
Classes in org.jfree.chart.renderer.xy that implement XYItemRenderer Modifier and Type Class Description classAbstractXYItemRendererA base class that can be used to create newXYItemRendererimplementations.classCandlestickRendererA renderer that draws candlesticks on anXYPlot(requires aOHLCDataset).classClusteredXYBarRendererAn extension ofXYBarRendererthat displays bars for different series values at the same x next to each other.classCyclicXYItemRendererThe Cyclic XY item renderer is specially designed to handle cyclic axis.classDefaultXYItemRendererA default renderer for theXYPlotclass.classDeviationRendererA specialised subclass of theXYLineAndShapeRendererthat requires anIntervalXYDatasetand represents the y-interval by shading an area behind the y-values on the chart.classDeviationStepRendererA specialised subclass of theDeviationRendererthat requires anIntervalXYDatasetand represents the y-interval by shading an area behind the y-values on the chart, drawing only horizontal or vertical lines (steps);classHighLowRendererA renderer that draws high/low/open/close markers on anXYPlot(requires aOHLCDataset).classSamplingXYLineRendererA renderer that draws line charts.classStackedXYAreaRendererA stacked area renderer for theXYPlotclass.classStackedXYAreaRenderer2A stacked area renderer for theXYPlotclass.classStackedXYBarRendererA bar renderer that displays the series items stacked.classStandardXYItemRendererStandard item renderer for anXYPlot.classVectorRendererA renderer that represents data from anVectorXYDatasetby drawing a line with an arrow at each (x, y) point.classWindItemRendererA specialised renderer for displaying wind intensity/direction data.classXYAreaRendererArea item renderer for anXYPlot.classXYAreaRenderer2Area item renderer for anXYPlot.classXYBarRendererA renderer that draws bars on anXYPlot(requires anIntervalXYDataset).classXYBlockRendererA renderer that represents data from anXYZDatasetby drawing a color block at each (x, y) point, where the color is a function of the z-value from the dataset.classXYBoxAndWhiskerRendererA renderer that draws box-and-whisker items on anXYPlot.classXYBubbleRendererA renderer that draws a circle at each data point with a diameter that is determined by the z-value in the dataset (the renderer requires the dataset to be an instance ofXYZDataset.classXYDifferenceRendererA renderer for anXYPlotthat highlights the differences between two series.classXYDotRendererA renderer that draws a small dot at each data point for anXYPlot.classXYErrorRendererA line and shape renderer that can also display x and/or y-error values.classXYLineAndShapeRendererA renderer that connects data points with lines and/or draws shapes at each data point.classXYShapeRendererA renderer that draws shapes at (x, y) coordinates and, if the dataset is an instance ofXYZDataset, fills the shapes with a paint that is based on the z-value (the paint is obtained from a lookup table).classXYSplineRendererA renderer that connects data points with natural cubic splines and/or draws shapes at each data point.classXYStepAreaRendererA step chart renderer that fills the area between the step and the x-axis.classXYStepRendererLine/Step item renderer for anXYPlot.classYIntervalRendererA renderer that draws a line connecting the start and end Y values for anXYPlot.