Uses of Interface
org.jfree.data.KeyedValues
-
Packages that use KeyedValues Package Description org.jfree.chart.plot.pie Classes used to create pie charts.org.jfree.data The base package for classes that represent various types of data.org.jfree.data.category A package containing theCategoryDatasetinterface and related classes.org.jfree.data.general Data interfaces and classes.org.jfree.data.json Utilities for reading/writing data to/from JSON format. -
-
Uses of KeyedValues in org.jfree.chart.plot.pie
Methods in org.jfree.chart.plot.pie with parameters of type KeyedValues Modifier and Type Method Description protected voidPiePlot. drawLeftLabels(KeyedValues<K> leftKeys, Graphics2D g2, Rectangle2D plotArea, Rectangle2D linkArea, float maxLabelWidth, PiePlotState state)Draws the left labels.protected voidPiePlot. drawRightLabels(KeyedValues<K> keys, Graphics2D g2, Rectangle2D plotArea, Rectangle2D linkArea, float maxLabelWidth, PiePlotState state)Draws the right labels. -
Uses of KeyedValues in org.jfree.data
Classes in org.jfree.data that implement KeyedValues Modifier and Type Class Description classDefaultKeyedValues<K extends Comparable<K>>An ordered list of (key, value) items.Methods in org.jfree.data that return KeyedValues Modifier and Type Method Description static <K extends Comparable<K>>
KeyedValues<K>DataUtils. getCumulativePercentages(KeyedValues<K> data)Returns aKeyedValuesinstance that contains the cumulative percentage values for the data in anotherKeyedValuesinstance.Methods in org.jfree.data with parameters of type KeyedValues Modifier and Type Method Description static <K extends Comparable<K>>
KeyedValues<K>DataUtils. getCumulativePercentages(KeyedValues<K> data)Returns aKeyedValuesinstance that contains the cumulative percentage values for the data in anotherKeyedValuesinstance. -
Uses of KeyedValues in org.jfree.data.category
Classes in org.jfree.data.category that implement KeyedValues Modifier and Type Class Description classCategoryToPieDatasetAPieDatasetimplementation that obtains its data from one row or column of aCategoryDataset. -
Uses of KeyedValues in org.jfree.data.general
Subinterfaces of KeyedValues in org.jfree.data.general Modifier and Type Interface Description interfaceKeyedValuesDataset<K extends Comparable<K>>A dataset containing (key, value) data items.interfacePieDataset<K extends Comparable<K>>A general purpose dataset where values are associated with keys.Classes in org.jfree.data.general that implement KeyedValues Modifier and Type Class Description classDefaultKeyedValuesDataset<K extends Comparable<K>>A default implementation of theKeyedValuesDatasetinterface.classDefaultPieDataset<K extends Comparable<K>>A default implementation of thePieDatasetinterface.Methods in org.jfree.data.general with parameters of type KeyedValues Modifier and Type Method Description static <R extends Comparable<R>,C extends Comparable<C>>
CategoryDataset<R,C>DatasetUtils. createCategoryDataset(R rowKey, KeyedValues<C> rowData)Creates aCategoryDatasetby copying the data from the suppliedKeyedValuesinstance.Constructors in org.jfree.data.general with parameters of type KeyedValues Constructor Description DefaultPieDataset(KeyedValues<K> source)Creates a new dataset by copying data from aKeyedValuesinstance. -
Uses of KeyedValues in org.jfree.data.json
Methods in org.jfree.data.json with parameters of type KeyedValues Modifier and Type Method Description static StringJSONUtils. writeKeyedValues(KeyedValues data)Returns a string containing the data in JSON format.static voidJSONUtils. writeKeyedValues(KeyedValues data, Writer writer)Writes the data in JSON format to the supplied writer.
-