public enum TrackBallHitTestMode extends Enum<TrackBallHitTestMode>
ChartTrackBallBehavior
should hit test its data points on the chart surface.Enum Constant and Description |
---|
LOGICAL
The points will be hit tested by the closest to the hit test area category.
|
PHYSICAL
The point will be hit tested by its physical location.
|
Modifier and Type | Method and Description |
---|---|
static TrackBallHitTestMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackBallHitTestMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackBallHitTestMode LOGICAL
public static final TrackBallHitTestMode PHYSICAL
public static TrackBallHitTestMode[] values()
for (TrackBallHitTestMode c : TrackBallHitTestMode.values()) System.out.println(c);
public static TrackBallHitTestMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null