public static enum PlotOptions.PointPlacement extends Enum<PlotOptions.PointPlacement>
PlotOptions.setPointPlacement(org.moxieapps.gwt.highcharts.client.plotOptions.PlotOptions.PointPlacement) method. Possible options are: "on" and "between"| Enum Constant and Description |
|---|
BETWEEN
In a column chart, the columns will be laid out between ticks.
|
ON
In a column chart, when pointPlacement is "on", the point will not create any padding of the X axis.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PlotOptions.PointPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlotOptions.PointPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotOptions.PointPlacement ON
public static final PlotOptions.PointPlacement BETWEEN
public static PlotOptions.PointPlacement[] values()
for (PlotOptions.PointPlacement c : PlotOptions.PointPlacement.values()) System.out.println(c);
public static PlotOptions.PointPlacement 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<PlotOptions.PointPlacement>Copyright © 2015. All Rights Reserved.