public class CrosshairOverlay extends AbstractOverlay implements Overlay, java.beans.PropertyChangeListener, org.jfree.util.PublicCloneable, java.lang.Cloneable, java.io.Serializable
ChartPanel
that draws crosshairs on a plot.Constructor and Description |
---|
CrosshairOverlay()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addDomainCrosshair(Crosshair crosshair)
Adds a crosshair against the domain axis and sends an
OverlayChangeEvent to all registered listeners. |
void |
addRangeCrosshair(Crosshair crosshair)
Adds a crosshair against the range axis and sends an
OverlayChangeEvent to all registered listeners. |
void |
clearDomainCrosshairs()
Clears all the domain crosshairs from the overlay and sends an
OverlayChangeEvent to all registered listeners. |
void |
clearRangeCrosshairs()
Clears all the range crosshairs from the overlay and sends an
OverlayChangeEvent to all registered listeners. |
java.lang.Object |
clone()
Returns a clone of this instance.
|
protected void |
drawHorizontalCrosshair(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
double y,
Crosshair crosshair)
Draws a crosshair horizontally across the plot.
|
protected void |
drawVerticalCrosshair(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
double x,
Crosshair crosshair)
Draws a crosshair vertically on the plot.
|
boolean |
equals(java.lang.Object obj)
Tests this overlay for equality with an arbitrary object.
|
java.util.List |
getDomainCrosshairs()
Returns a new list containing the domain crosshairs for this overlay.
|
java.util.List |
getRangeCrosshairs()
Returns a new list containing the range crosshairs for this overlay.
|
void |
paintOverlay(java.awt.Graphics2D g2,
ChartPanel chartPanel)
Paints the crosshairs in the layer.
|
void |
propertyChange(java.beans.PropertyChangeEvent e)
Receives a property change event (typically a change in one of the
crosshairs).
|
void |
removeDomainCrosshair(Crosshair crosshair)
Removes a domain axis crosshair and sends an
OverlayChangeEvent
to all registered listeners. |
void |
removeRangeCrosshair(Crosshair crosshair)
Removes a range axis crosshair and sends an
OverlayChangeEvent
to all registered listeners. |
addChangeListener, fireOverlayChanged, notifyListeners, removeChangeListener
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addChangeListener, removeChangeListener
public CrosshairOverlay()
public void addDomainCrosshair(Crosshair crosshair)
OverlayChangeEvent
to all registered listeners.crosshair
- the crosshair (null
not permitted).removeDomainCrosshair(org.jfree.chart.plot.Crosshair)
,
addRangeCrosshair(org.jfree.chart.plot.Crosshair)
public void removeDomainCrosshair(Crosshair crosshair)
OverlayChangeEvent
to all registered listeners.crosshair
- the crosshair (null
not permitted).addDomainCrosshair(org.jfree.chart.plot.Crosshair)
public void clearDomainCrosshairs()
OverlayChangeEvent
to all registered listeners.public java.util.List getDomainCrosshairs()
public void addRangeCrosshair(Crosshair crosshair)
OverlayChangeEvent
to all registered listeners.crosshair
- the crosshair (null
not permitted).public void removeRangeCrosshair(Crosshair crosshair)
OverlayChangeEvent
to all registered listeners.crosshair
- the crosshair (null
not permitted).addRangeCrosshair(org.jfree.chart.plot.Crosshair)
public void clearRangeCrosshairs()
OverlayChangeEvent
to all registered listeners.public java.util.List getRangeCrosshairs()
public void propertyChange(java.beans.PropertyChangeEvent e)
propertyChange
in interface java.beans.PropertyChangeListener
e
- the event.public void paintOverlay(java.awt.Graphics2D g2, ChartPanel chartPanel)
paintOverlay
in interface Overlay
g2
- the graphics target.chartPanel
- the chart panel.protected void drawHorizontalCrosshair(java.awt.Graphics2D g2, java.awt.geom.Rectangle2D dataArea, double y, Crosshair crosshair)
g2
- the graphics target.dataArea
- the data area.y
- the y-value in Java2D space.crosshair
- the crosshair.protected void drawVerticalCrosshair(java.awt.Graphics2D g2, java.awt.geom.Rectangle2D dataArea, double x, Crosshair crosshair)
g2
- the graphics target.dataArea
- the data area.x
- the x-value in Java2D space.crosshair
- the crosshair.public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
obj
- the object (null
permitted).public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in interface org.jfree.util.PublicCloneable
clone
in class java.lang.Object
java.lang.CloneNotSupportedException
- if there is some problem
with the cloning.