Uses of Interface
org.jfree.data.KeyedValues
-
Packages that use KeyedValues Package Description org.jfree.chart.plot Plot classes and related interfaces.org.jfree.data The base package for classes that represent various types of data.org.jfree.data.category A package containing theCategoryDataset
interface and related classes.org.jfree.data.general Data interfaces and classes.org.jfree.data.jdbc Dataset classes that fetch data from a database via JDBC.org.jfree.data.json Utilities for reading/writing data to/from JSON format. -
-
Uses of KeyedValues in org.jfree.chart.plot
Methods in org.jfree.chart.plot with parameters of type KeyedValues Modifier and Type Method Description protected void
PiePlot. drawLeftLabels(KeyedValues<K> leftKeys, java.awt.Graphics2D g2, java.awt.geom.Rectangle2D plotArea, java.awt.geom.Rectangle2D linkArea, float maxLabelWidth, PiePlotState state)
Draws the left labels.protected void
PiePlot. drawRightLabels(KeyedValues<K> keys, java.awt.Graphics2D g2, java.awt.geom.Rectangle2D plotArea, java.awt.geom.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 class
DefaultKeyedValues<K extends java.lang.Comparable<K>>
An ordered list of (key, value) items.Methods in org.jfree.data that return KeyedValues Modifier and Type Method Description static KeyedValues
DataUtils. getCumulativePercentages(KeyedValues data)
Returns aKeyedValues
instance that contains the cumulative percentage values for the data in anotherKeyedValues
instance.Methods in org.jfree.data with parameters of type KeyedValues Modifier and Type Method Description static KeyedValues
DataUtils. getCumulativePercentages(KeyedValues data)
Returns aKeyedValues
instance that contains the cumulative percentage values for the data in anotherKeyedValues
instance. -
Uses of KeyedValues in org.jfree.data.category
Classes in org.jfree.data.category that implement KeyedValues Modifier and Type Class Description class
CategoryToPieDataset
APieDataset
implementation 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 interface
KeyedValuesDataset
A dataset containing (key, value) data items.interface
PieDataset<K extends java.lang.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 class
DefaultKeyedValuesDataset
A default implementation of theKeyedValuesDataset
interface.class
DefaultPieDataset<K extends java.lang.Comparable<K>>
A default implementation of thePieDataset
interface.Methods in org.jfree.data.general with parameters of type KeyedValues Modifier and Type Method Description static CategoryDataset
DatasetUtils. createCategoryDataset(java.lang.Comparable rowKey, KeyedValues rowData)
Creates aCategoryDataset
by copying the data from the suppliedKeyedValues
instance.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 aKeyedValues
instance. -
Uses of KeyedValues in org.jfree.data.jdbc
Classes in org.jfree.data.jdbc that implement KeyedValues Modifier and Type Class Description class
JDBCPieDataset
APieDataset
that reads data from a database via JDBC. -
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 java.lang.String
JSONUtils. writeKeyedValues(KeyedValues data)
Returns a string containing the data in JSON format.static void
JSONUtils. writeKeyedValues(KeyedValues data, java.io.Writer writer)
Writes the data in JSON format to the supplied writer.
-