Package | Description |
---|---|
org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel . |
org.jfree.chart.entity |
Classes representing components of (or entities in) a chart.
|
org.jfree.chart.fx.interaction |
Contains classes that implement most of the interactivity for the
ChartViewer and
ChartCanvas components. |
Modifier and Type | Method and Description |
---|---|
ChartEntity |
ChartMouseEvent.getEntity()
Returns the chart entity (if any) under the mouse point.
|
ChartEntity |
ChartPanel.getEntityForPoint(int viewX,
int viewY)
Returns the chart entity at a given point.
|
Constructor and Description |
---|
ChartMouseEvent(JFreeChart chart,
java.awt.event.MouseEvent trigger,
ChartEntity entity)
Constructs a new event.
|
Modifier and Type | Class and Description |
---|---|
class |
AxisEntity
A class that captures information about an
Axis belonging to a
chart. |
class |
CategoryItemEntity
A chart entity that represents one item within a category plot.
|
class |
CategoryLabelEntity
An entity to represent the labels on a
CategoryAxis . |
class |
ContourEntity
Deprecated.
This class is no longer supported (as of version 1.0.4). If
you are creating contour plots, please try to use
XYPlot and
XYBlockRenderer . |
class |
JFreeChartEntity
A class that captures information about an entire chart.
|
class |
LegendItemEntity
An entity that represents an item within a legend.
|
class |
PieSectionEntity
A chart entity that represents one section within a pie plot.
|
class |
PlotEntity
A class that captures information about a plot.
|
class |
TickLabelEntity
A chart entity representing a tick label.
|
class |
TitleEntity
A class that captures information about a Title of a chart.
|
class |
XYAnnotationEntity
A chart entity that represents an annotation on an
XYPlot . |
class |
XYItemEntity
A chart entity that represents one item within an
XYPlot . |
Modifier and Type | Method and Description |
---|---|
ChartEntity |
StandardEntityCollection.getEntity(double x,
double y)
Returns the last entity in the list with an area that encloses the
specified coordinates, or
null if there is no such entity. |
ChartEntity |
EntityCollection.getEntity(double x,
double y)
Returns an entity whose area contains the specified point.
|
ChartEntity |
StandardEntityCollection.getEntity(int index)
Returns a chart entity from the collection.
|
ChartEntity |
EntityCollection.getEntity(int index)
Returns an entity from the collection.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardEntityCollection.add(ChartEntity entity)
Adds an entity to the collection.
|
void |
EntityCollection.add(ChartEntity entity)
Adds an entity to the collection.
|
Modifier and Type | Method and Description |
---|---|
ChartEntity |
ChartMouseEventFX.getEntity()
Returns the chart entity (if any) under the mouse point.
|
Constructor and Description |
---|
ChartMouseEventFX(JFreeChart chart,
javafx.scene.input.MouseEvent trigger,
ChartEntity entity)
Constructs a new event.
|