public static enum BaseChart.ZoomType extends Enum<BaseChart.ZoomType>
Chart.setZoomType(ZoomType) method. The zoom type controls in what
dimensions the user can zoom by dragging the mouse| Enum Constant and Description |
|---|
X
Allow zoom horizontally on the X axis only.
|
X_AND_Y
Allow zooming both horizontally and vertically (both axes).
|
Y
Allow zoom vertically on the Y axis only.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static BaseChart.ZoomType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseChart.ZoomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseChart.ZoomType X
public static final BaseChart.ZoomType Y
public static final BaseChart.ZoomType X_AND_Y
public static BaseChart.ZoomType[] values()
for (BaseChart.ZoomType c : BaseChart.ZoomType.values()) System.out.println(c);
public static BaseChart.ZoomType 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 nullpublic String toString()
toString in class Enum<BaseChart.ZoomType>Copyright © 2015. All Rights Reserved.