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