Class PlotEntity

java.lang.Object
org.jfree.chart.entity.ChartEntity
org.jfree.chart.entity.PlotEntity
All Implemented Interfaces:
Serializable, Cloneable, PublicCloneable

public class PlotEntity extends ChartEntity
A class that captures information about a plot.
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      For serialization.
      See Also:
    • plot

      private Plot plot
      The plot.
  • Constructor Details

    • PlotEntity

      public PlotEntity(Shape area, Plot plot)
      Creates a new plot entity.
      Parameters:
      area - the area (null not permitted).
      plot - the plot (null not permitted).
    • PlotEntity

      public PlotEntity(Shape area, Plot plot, String toolTipText)
      Creates a new plot entity.
      Parameters:
      area - the area (null not permitted).
      plot - the plot (null not permitted).
      toolTipText - the tool tip text (null permitted).
    • PlotEntity

      public PlotEntity(Shape area, Plot plot, String toolTipText, String urlText)
      Creates a new plot entity.
      Parameters:
      area - the area (null not permitted).
      plot - the plot (null not permitted).
      toolTipText - the tool tip text (null permitted).
      urlText - the URL text for HTML image maps (null permitted).
  • Method Details