com.vaadin.flow.component.charts.model.
Class Navigation
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Navigation
-
All Implemented Interfaces:
public class Navigation extends AbstractConfigurationObject
A collection of options for buttons and menus appearing in the exporting module.
See Also:
-
-
Constructor Summary
Constructors Constructor and Description Navigation()
-
Method Summary
All Methods Modifier and Type Method and Description ButtonOptions
getButtonOptions()
Style
getMenuItemHoverStyle()
Style
getMenuItemStyle()
Style
getMenuStyle()
void
setButtonOptions(ButtonOptions buttonOptions)
A collection of options for buttons appearing in the exporting module.
void
setMenuItemHoverStyle(Style menuItemHoverStyle)
CSS styles for the hover state of the individual items within the popup menu appearing by default when the export icon is clicked.
void
setMenuItemStyle(Style menuItemStyle)
CSS styles for the individual items within the popup menu appearing by default when the export icon is clicked.
void
setMenuStyle(Style menuStyle)
CSS styles for the popup menu appearing by default when the export icon is clicked.
-
-
-
Method Detail
-
getButtonOptions
public ButtonOptions getButtonOptions()
See Also:
-
setButtonOptions
public void setButtonOptions(ButtonOptions buttonOptions)
A collection of options for buttons appearing in the exporting module.
In styled mode, the buttons are styled with the
.highcharts-contextbutton
and.highcharts-button-symbol
class.
-
getMenuItemHoverStyle
public Style getMenuItemHoverStyle()
See Also:
-
setMenuItemHoverStyle
public void setMenuItemHoverStyle(Style menuItemHoverStyle)
CSS styles for the hover state of the individual items within the popup menu appearing by default when the export icon is clicked. The menu items are rendered in HTML.
Defaults to: { "background": "#335cad", "color": "#ffffff" }
-
getMenuItemStyle
public Style getMenuItemStyle()
See Also:
-
setMenuItemStyle
public void setMenuItemStyle(Style menuItemStyle)
CSS styles for the individual items within the popup menu appearing by default when the export icon is clicked. The menu items are rendered in HTML.
Defaults to: { "padding": "0.5em 1em", "color": "#333333", "background": "none" }
-
getMenuStyle
public Style getMenuStyle()
See Also:
-
setMenuStyle
public void setMenuStyle(Style menuStyle)
CSS styles for the popup menu appearing by default when the export icon is clicked. This menu is rendered in HTML.
Defaults to: { "border": "1px solid #999999", "background": "#ffffff", "padding": "5px 0" }
-
-