com.vaadin.flow.component.charts.model.
Class Loading
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Loading
-
All Implemented Interfaces:
public class Loading extends AbstractConfigurationObject
The loading options control the appearance of the loading screen that covers the plot area on chart operations. This screen only appears after an explicit call to
chart.showLoading()
. It is a utility for developers to communicate to the end user that something is going on, for example while retrieving new data via an XHR connection. The "Loading..." text itself is not part of this configuration object, but part of thelang
object.See Also:
-
-
Constructor Summary
Constructors Constructor and Description Loading()
-
Method Summary
All Methods Modifier and Type Method and Description Number
getHideDuration()
Number
getShowDuration()
void
setHideDuration(Number hideDuration)
The duration in milliseconds of the fade out effect.
void
setShowDuration(Number showDuration)
The duration in milliseconds of the fade in effect.
-
-
-
Method Detail
-
getHideDuration
public Number getHideDuration()
See Also:
-
setHideDuration
public void setHideDuration(Number hideDuration)
The duration in milliseconds of the fade out effect.
Defaults to: 100
-
getShowDuration
public Number getShowDuration()
See Also:
-
setShowDuration
public void setShowDuration(Number showDuration)
The duration in milliseconds of the fade in effect.
Defaults to: 100
-
-