Package | Description |
---|---|
org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel . |
org.jfree.chart.annotations |
A framework for adding annotations to charts.
|
org.jfree.chart.entity |
Classes representing components of (or entities in) a chart.
|
org.jfree.chart.event |
Event classes and listener interfaces, used to provide a change
notification mechanism so that charts are automatically redrawn
whenever changes are made to any chart component.
|
org.jfree.chart.plot |
Plot classes and related interfaces.
|
org.jfree.chart.title |
Classes used to display chart titles and subtitles.
|
Modifier and Type | Method and Description |
---|---|
Title |
JFreeChart.getSubtitle(int index)
Returns a chart subtitle.
|
Modifier and Type | Method and Description |
---|---|
void |
JFreeChart.addSubtitle(int index,
Title subtitle)
Adds a subtitle at a particular position in the subtitle list, and sends
a
ChartChangeEvent to all registered listeners. |
void |
JFreeChart.addSubtitle(Title subtitle)
Adds a chart subtitle, and notifies registered listeners that the chart
has been modified.
|
protected void |
StandardChartTheme.applyToTitle(Title title)
Applies the attributes of this theme to the specified title.
|
protected EntityCollection |
JFreeChart.drawTitle(Title t,
java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D area,
boolean entities)
Draws a title.
|
void |
JFreeChart.removeSubtitle(Title title)
Removes the specified subtitle and sends a
ChartChangeEvent to
all registered listeners. |
Modifier and Type | Method and Description |
---|---|
Title |
XYTitleAnnotation.getTitle()
Returns the title for the annotation.
|
Constructor and Description |
---|
XYTitleAnnotation(double x,
double y,
Title title)
Creates a new annotation to be displayed at the specified (x, y)
location.
|
XYTitleAnnotation(double x,
double y,
Title title,
org.jfree.ui.RectangleAnchor anchor)
Creates a new annotation to be displayed at the specified (x, y)
location.
|
Modifier and Type | Method and Description |
---|---|
Title |
TitleEntity.getTitle()
Returns the title that occupies the entity area.
|
Constructor and Description |
---|
TitleEntity(java.awt.Shape area,
Title title)
Creates a new chart entity.
|
TitleEntity(java.awt.Shape area,
Title title,
java.lang.String toolTipText)
Creates a new chart entity.
|
TitleEntity(java.awt.Shape area,
Title title,
java.lang.String toolTipText,
java.lang.String urlText)
Creates a new entity.
|
Modifier and Type | Method and Description |
---|---|
Title |
TitleChangeEvent.getTitle()
Returns the title that generated the event.
|
Constructor and Description |
---|
TitleChangeEvent(Title title)
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
JThermometer.addSubtitle(Title subtitle)
Adds a subtitle to the chart.
|
Modifier and Type | Class and Description |
---|---|
class |
CompositeTitle
A title that contains multiple titles within a
BlockContainer . |
class |
DateTitle
A chart title that displays the date.
|
class |
ImageTitle
A chart title that displays an image.
|
class |
LegendTitle
A chart title that displays a legend for the data in the chart.
|
class |
PaintScaleLegend
A legend that shows a range of values and their associated colors, driven
by an underlying
PaintScale implementation. |
class |
ShortTextTitle
A text title that is only displayed if the entire text will be visible
without line wrapping.
|
class |
TextTitle
A chart title that displays a text string with automatic wrapping as
required.
|