-
- All Implemented Interfaces:
-
java.io.Serializable
,java.lang.Comparable
public enum BarRenderer.BarOrientation
How bars should be laid out when in a group of 2 or more series.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IN_ORDER
Bars are drawn overlapping one another, in the order their respective serieswas added to the plot.
OVERLAID
Bars are drawn overlapping one another, with taller bars being drawn behindthe shorter ones.
STACKED
Bars are stacked on top of one another so that the sum of their yVals produces the finalheight of that bar.
SIDE_BY_SIDE
Bars are drawn next to one another, grouped by iVal
-
Method Summary
Modifier and Type Method Description static Array<BarRenderer.BarOrientation>
values()
static BarRenderer.BarOrientation
valueOf(String name)
-
-
Method Detail
-
values
static Array<BarRenderer.BarOrientation> values()
-
valueOf
static BarRenderer.BarOrientation valueOf(String name)
-
-
-
-