Uses of Class
org.pepstock.charba.client.enums.ModifierKey
-
Packages that use ModifierKey Package Description org.pepstock.charba.client.enums Contains all enumerations of some chart options where only a specific set of values can be set.org.pepstock.charba.client.impl.plugins Contains some plugins implementations, available out-of-the box.org.pepstock.charba.client.utils.toast Contains all classes to useToaster
utility.org.pepstock.charba.client.zoom Contains all classes to activate theZoomPlugin.ID
plugin (AKAchartjs-plugin-zoom.js
) for CHART.js. -
-
Uses of ModifierKey in org.pepstock.charba.client.enums
Methods in org.pepstock.charba.client.enums that return ModifierKey Modifier and Type Method Description static ModifierKey
ModifierKey. valueOf(String name)
Returns the enum constant of this type with the specified name.static ModifierKey[]
ModifierKey. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.pepstock.charba.client.enums with parameters of type ModifierKey Modifier and Type Method Description static boolean
ModifierKey. arePressed(BaseNativeEvent event, ModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted.static boolean
ModifierKey. arePressed(AbstractEvent event, ModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted.static boolean
ModifierKey. arePressed(ChartEventContext event, ModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted. -
Uses of ModifierKey in org.pepstock.charba.client.impl.plugins
Methods in org.pepstock.charba.client.impl.plugins that return ModifierKey Modifier and Type Method Description ModifierKey
CrosshairOptions. getModifierKey()
Returns the modifier key to activate the crosshair.ModifierKey
DatasetsItemsSelectorOptions. getModifierKey()
Returns the modifier key to activate selection.Methods in org.pepstock.charba.client.impl.plugins with parameters of type ModifierKey Modifier and Type Method Description void
CrosshairOptions. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate the crosshair.CrosshairOptionsBuilder
CrosshairOptionsBuilder. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate the crosshair.void
DatasetsItemsSelectorOptions. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate selection.DatasetsItemsSelectorOptionsBuilder
DatasetsItemsSelectorOptionsBuilder. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate selection. -
Uses of ModifierKey in org.pepstock.charba.client.utils.toast
Methods in org.pepstock.charba.client.utils.toast that return ModifierKey Modifier and Type Method Description default ModifierKey
IsDefaultToastOptions. getModifierKey()
Returns the modifier key to close the toast by clicking on it.Methods in org.pepstock.charba.client.utils.toast with parameters of type ModifierKey Modifier and Type Method Description ToastOptionsBuilder
ToastOptionsBuilder. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to close the toast by clicking on it. -
Uses of ModifierKey in org.pepstock.charba.client.zoom
Methods in org.pepstock.charba.client.zoom that return ModifierKey Modifier and Type Method Description ModifierKey
Drag. getModifierKey()
Returns the modifier key to activate drag-to-zoom.ModifierKey
Pan. getModifierKey()
Returns the modifier key to activate panning.ModifierKey
Wheel. getModifierKey()
Returns the modifier key to activate zooming by wheeling.Methods in org.pepstock.charba.client.zoom with parameters of type ModifierKey Modifier and Type Method Description void
Drag. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate drag-to-zoom.void
Pan. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate panning.void
Wheel. setModifierKey(ModifierKey modifierKey)
Sets the modifier key to activate zooming by wheeling.
-