Class CompassPlot

    • Field Detail

      • DEFAULT_LABEL_FONT

        public static final java.awt.Font DEFAULT_LABEL_FONT
        The default label font.
      • localizationResources

        protected static java.util.ResourceBundle localizationResources
        The resourceBundle for the localization.
      • revolutionDistance

        protected double revolutionDistance
        The count to complete one revolution. Can be arbitrarily set For degrees (the default) it is 360, for radians this is 2*Pi, etc
    • Constructor Detail

      • CompassPlot

        public CompassPlot()
        Default constructor.
      • CompassPlot

        public CompassPlot​(ValueDataset dataset)
        Constructs a new compass plot.
        Parameters:
        dataset - the dataset for the plot (null permitted).
    • Method Detail

      • setLabelFont

        public void setLabelFont​(java.awt.Font font)
        Sets the label font and sends a PlotChangeEvent to all registered listeners.
        Parameters:
        font - the new label font.
        See Also:
        getLabelFont()
      • getRosePaint

        public java.awt.Paint getRosePaint()
        Returns the paint used to fill the outer circle of the compass.
        Returns:
        The paint (never null).
        See Also:
        setRosePaint(Paint)
      • setRosePaint

        public void setRosePaint​(java.awt.Paint paint)
        Sets the paint used to fill the outer circle of the compass, and sends a PlotChangeEvent to all registered listeners.
        Parameters:
        paint - the paint (null not permitted).
        See Also:
        getRosePaint()
      • setRoseCenterPaint

        public void setRoseCenterPaint​(java.awt.Paint paint)
        Sets the paint used to fill the inner background area of the compass, and sends a PlotChangeEvent to all registered listeners.
        Parameters:
        paint - the paint (null not permitted).
        See Also:
        getRoseCenterPaint()
      • setRoseHighlightPaint

        public void setRoseHighlightPaint​(java.awt.Paint paint)
        Sets the paint used to draw the circles, symbols and labels of the compass, and sends a PlotChangeEvent to all registered listeners.
        Parameters:
        paint - the paint (null not permitted).
        See Also:
        getRoseHighlightPaint()
      • setDrawBorder

        public void setDrawBorder​(boolean status)
        Sets a flag that controls whether or not a border is drawn.
        Parameters:
        status - the flag status.
        See Also:
        getDrawBorder()
      • setSeriesNeedle

        public void setSeriesNeedle​(int index,
                                    MeterNeedle needle)
        Sets the needle for a series and sends a PlotChangeEvent to all registered listeners.
        Parameters:
        index - the series index.
        needle - the needle.
      • addDataset

        public void addDataset​(ValueDataset dataset,
                               MeterNeedle needle)
        Adds a dataset to the compass.
        Parameters:
        dataset - the new dataset (null ignored).
        needle - the needle (null permitted).
      • draw

        public void draw​(java.awt.Graphics2D g2,
                         java.awt.geom.Rectangle2D area,
                         java.awt.geom.Point2D anchor,
                         PlotState parentState,
                         PlotRenderingInfo info)
        Draws the plot on a Java 2D graphics device (such as the screen or a printer).
        Specified by:
        draw in class Plot
        Parameters:
        g2 - the graphics device.
        area - the area within which the plot should be drawn.
        anchor - the anchor point (null permitted).
        parentState - the state from the parent plot, if there is one.
        info - collects info about the drawing.
      • getPlotType

        public java.lang.String getPlotType()
        Returns a short string describing the type of plot.
        Specified by:
        getPlotType in class Plot
        Returns:
        A string describing the plot.
      • zoom

        public void zoom​(double percent)
        No zooming is implemented for compass plot, so this method is empty.
        Overrides:
        zoom in class Plot
        Parameters:
        percent - the zoom amount.
      • getCompassFont

        protected java.awt.Font getCompassFont​(int radius)
        Returns the font for the compass, adjusted for the size of the plot.
        Parameters:
        radius - the radius.
        Returns:
        The font.
      • equals

        public boolean equals​(java.lang.Object obj)
        Tests an object for equality with this plot.
        Overrides:
        equals in class Plot
        Parameters:
        obj - the object (null permitted).
        Returns:
        A boolean.
      • clone

        public java.lang.Object clone()
                               throws java.lang.CloneNotSupportedException
        Returns a clone of the plot.
        Specified by:
        clone in interface org.jfree.util.PublicCloneable
        Overrides:
        clone in class Plot
        Returns:
        A clone.
        Throws:
        java.lang.CloneNotSupportedException - this class will not throw this exception, but subclasses (if any) might.
      • setRevolutionDistance

        public void setRevolutionDistance​(double size)
        Sets the count to complete one revolution. Can be arbitrarily set For degrees (the default) it is 360, for radians this is 2*Pi, etc
        Parameters:
        size - the count to complete one revolution.
        See Also:
        getRevolutionDistance()