Class States
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.States
-
- All Implemented Interfaces:
Serializable
public class States extends AbstractConfigurationObject
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description States()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HovergetHover()InactivegetInactive()SelectgetSelect()voidsetHover(Hover hover)The appearance of the other marker or data point when hover.voidsetInactive(Inactive inactive)The appearance of the other data points when one is hovered.voidsetSelect(Select select)The appearance of the point marker when selected.
-
-
-
Method Detail
-
getHover
public Hover getHover()
- See Also:
setHover(Hover)
-
setHover
public void setHover(Hover hover)
The appearance of the other marker or data point when hover.- See Also:
#setInactive(Hover)
-
getSelect
public Select getSelect()
- See Also:
setSelect(Select)
-
setSelect
public void setSelect(Select select)
The appearance of the point marker when selected. In order to allow a point to be selected, set theseries.allowPointSelectoption to true.
-
getInactive
public Inactive getInactive()
- See Also:
#setInactive(Hover)
-
setInactive
public void setInactive(Inactive inactive)
The appearance of the other data points when one is hovered.Note: Inactive style is not applied to
Marker.- See Also:
setHover(Hover)
-
-