Uses of Class
com.jrefinery.chart.entity.ChartEntity

Packages that use ChartEntity
com.jrefinery.chart The main classes in the JFreeChart class library. 
com.jrefinery.chart.entity Classes representing components of (or entities in) a chart. 
 

Uses of ChartEntity in com.jrefinery.chart
 

Methods in com.jrefinery.chart that return ChartEntity
 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.
 

Constructors in com.jrefinery.chart with parameters of type ChartEntity
ChartMouseEvent(java.awt.event.MouseEvent trigger, ChartEntity entity)
          Constructs a new event.
 

Uses of ChartEntity in com.jrefinery.chart.entity
 

Subclasses of ChartEntity in com.jrefinery.chart.entity
 class CategoryItemEntity
          A chart entity that represents one item within a category plot.
 class PieSectionEntity
          A chart entity that represents one section within a pie plot.
 class XYItemEntity
          A chart entity that represents one item within an XY plot.
 

Methods in com.jrefinery.chart.entity that return ChartEntity
 ChartEntity EntityCollection.getEntity(double x, double y)
          Returns an entity whose area contains the specified point.
 ChartEntity StandardEntityCollection.getEntity(double x, double y)
          Returns an entity for the specified coordinates.
 

Methods in com.jrefinery.chart.entity with parameters of type ChartEntity
 void EntityCollection.addEntity(ChartEntity entity)
          Adds an entity to the collection.
 void StandardEntityCollection.addEntity(ChartEntity entity)
          Adds an entity.