com.vaadin.flow.component.charts.model.
Class Inactive
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Inactive
-
All Implemented Interfaces:
public class Inactive extends AbstractConfigurationObject
See Also:
-
-
Method Summary
All Methods Modifier and Type Method Description Boolean
getAnimation()
Color
getBorderColor()
Color
getColor()
Boolean
getEnabled()
Number
getLineWidth()
Number
getOpacity()
void
setAnimation(Boolean animation)
Animation setting for hovering the graph in line-type series.
void
setBorderColor(Color borderColor)
A specific border color for the hovered point.
void
setColor(Color color)
A specific color for the hovered point.
void
setEnabled(Boolean enabled)
Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.
void
setOpacity(Number opacity)
The opacity of a point in treemap.
-
-
-
Constructor Detail
-
Inactive
public Inactive()
-
Inactive
public Inactive(Boolean enabled)
-
-
Method Detail
-
getAnimation
public Boolean getAnimation()
See Also:
-
setAnimation
public void setAnimation(Boolean animation)
Animation setting for hovering the graph in line-type series.
Defaults to: { "duration": 50 }
-
getEnabled
public Boolean getEnabled()
See Also:
-
setEnabled
public void setEnabled(Boolean enabled)
Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. .
Defaults to: true
-
getLineWidth
public Number getLineWidth()
See Also:
#setLineWidth(Number)
-
getBorderColor
public Color getBorderColor()
See Also:
-
setBorderColor
public void setBorderColor(Color borderColor)
A specific border color for the hovered point. Defaults to inherit the normal state border color.
-
getColor
public Color getColor()
See Also:
-
setColor
public void setColor(Color color)
A specific color for the hovered point.
Defaults to: undefined
-
getOpacity
public Number getOpacity()
See Also:
-
setOpacity
public void setOpacity(Number opacity)
The opacity of a point in treemap. When a point has children, the visibility of the children is determined by the opacity.
Defaults to: 0.75
-
-