| java.lang.Object | ||
| ↳ | org.jfree.chart.plot.Marker | |
| ↳ | org.jfree.chart.plot.ValueMarker | |
A marker that represents a single value. Markers can be added to plots to highlight specific values.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new marker.
| |||||||||||
Creates a new marker.
| |||||||||||
Creates a new value marker.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Tests this marker for equality with an arbitrary object.
| |||||||||||
Returns the value.
| |||||||||||
Sets the value for the marker and sends a
MarkerChangeEvent to
all registered listeners. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.chart.plot.Marker
| |||||||||||
From class
java.lang.Object
| |||||||||||
Creates a new marker.
| value | the value. |
|---|
Creates a new marker.
| value | the value. |
|---|---|
| paint | the paint (null not permitted). |
| stroke | the stroke (null not permitted).
|
Creates a new value marker.
| value | the value. |
|---|---|
| paint | the paint (null not permitted). |
| stroke | the stroke (null not permitted). |
| outlinePaint | the outline paint (null permitted). |
| outlineStroke | the outline stroke (null permitted). |
| alpha | the alpha transparency (in the range 0.0f to 1.0f). |
Tests this marker for equality with an arbitrary object. This method
returns true if:
obj is not null;obj is an instance of ValueMarker;obj has the same value as this marker;super.equals(obj) returns true.| obj | the object (null permitted). |
|---|
Sets the value for the marker and sends a MarkerChangeEvent to
all registered listeners.
| value | the value. |
|---|