com.vaadin.flow.component.charts.model.
Class Level
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Level
-
All Implemented Interfaces:
@Generated(value="This class is generated and shouldn\'t be modified", comments="Incorrect and missing API should be reported to https://github.com/vaadin/vaadin-charts-flow/issues/new") public class Level extends AbstractConfigurationObject
Set options on specific levels. Takes precedence over series options, but not point options.
See Also:
-
-
Constructor Summary
Constructors Constructor and Description Level()
-
Method Summary
All Methods Modifier and Type Method and Description DataLabels
getDataLabels()
TreeMapLayoutAlgorithm
getLayoutAlgorithm()
TreeMapLayoutStartingDirection
getLayoutStartingDirection()
Number
getLevel()
void
setDataLabels(DataLabels dataLabels)
Can set the options of dataLabels on each point which lies on the level.
void
setLayoutAlgorithm(TreeMapLayoutAlgorithm layoutAlgorithm)
Can set the layoutAlgorithm option on a specific level.
void
setLayoutStartingDirection(TreeMapLayoutStartingDirection layoutStartingDirection)
Can set the layoutStartingDirection option on a specific level.
void
setLevel(Number level)
Decides which level takes effect from the options set in the levels object.
-
-
-
Method Detail
-
getDataLabels
public DataLabels getDataLabels()
See Also:
-
setDataLabels
public void setDataLabels(DataLabels dataLabels)
Can set the options of dataLabels on each point which lies on the level. plotOptions.treemap.dataLabels for possible values.
Defaults to: undefined
-
getLayoutAlgorithm
public TreeMapLayoutAlgorithm getLayoutAlgorithm()
-
setLayoutAlgorithm
public void setLayoutAlgorithm(TreeMapLayoutAlgorithm layoutAlgorithm)
Can set the layoutAlgorithm option on a specific level.
-
getLayoutStartingDirection
public TreeMapLayoutStartingDirection getLayoutStartingDirection()
-
setLayoutStartingDirection
public void setLayoutStartingDirection(TreeMapLayoutStartingDirection layoutStartingDirection)
Can set the layoutStartingDirection option on a specific level.
-
getLevel
public Number getLevel()
See Also:
-
setLevel
public void setLevel(Number level)
Decides which level takes effect from the options set in the levels object.
-
-