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 the
CategoryDataset 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.
|
Modifier and Type | Method and Description |
---|---|
protected void |
PiePlot.drawLeftLabels(KeyedValues 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 keys,
java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D plotArea,
java.awt.geom.Rectangle2D linkArea,
float maxLabelWidth,
PiePlotState state)
Draws the right labels.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultKeyedValues
An ordered list of (key, value) items.
|
Modifier and Type | Method and Description |
---|---|
static KeyedValues |
DataUtilities.getCumulativePercentages(KeyedValues data)
Returns a
KeyedValues instance that contains the cumulative
percentage values for the data in another KeyedValues instance. |
Modifier and Type | Method and Description |
---|---|
static KeyedValues |
DataUtilities.getCumulativePercentages(KeyedValues data)
Returns a
KeyedValues instance that contains the cumulative
percentage values for the data in another KeyedValues instance. |
Modifier and Type | Class and Description |
---|---|
class |
CategoryToPieDataset
A
PieDataset implementation that obtains its data from one row or
column of a CategoryDataset . |
Modifier and Type | Interface and Description |
---|---|
interface |
KeyedValuesDataset
A dataset containing (key, value) data items.
|
interface |
PieDataset
A general purpose dataset where values are associated with keys.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultKeyedValuesDataset
A default implementation of the
KeyedValuesDataset interface. |
class |
DefaultPieDataset
A default implementation of the
PieDataset interface. |
Modifier and Type | Method and Description |
---|---|
static CategoryDataset |
DatasetUtilities.createCategoryDataset(java.lang.Comparable rowKey,
KeyedValues rowData)
Creates a
CategoryDataset by copying the data from the supplied
KeyedValues instance. |
Constructor and Description |
---|
DefaultPieDataset(KeyedValues data)
Creates a new dataset by copying data from a
KeyedValues
instance. |
Modifier and Type | Class and Description |
---|---|
class |
JDBCPieDataset
A
PieDataset that reads data from a database via JDBC. |