Uses of Interface
org.pepstock.charba.client.enums.IsInteractionMode
-
Packages that use IsInteractionMode Package Description org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).org.pepstock.charba.client.defaults Contains all interfaces need to provide defaults values of the chart options.org.pepstock.charba.client.defaults.chart Contains the default values of chart options based on type of chart instance.org.pepstock.charba.client.defaults.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).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.interaction Contains all classes to implement a custom interactions for CHART.JS.org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers. -
-
Uses of IsInteractionMode in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return IsInteractionMode Modifier and Type Method Description IsInteractionMode
Hover. getMode()
Returns which elements appear in the chart, hovering the chart.IsInteractionMode
Interaction. getMode()
Returns which elements appear in the interaction.IsInteractionMode
Tooltips. getMode()
Returns which elements appear in the tooltip.Methods in org.pepstock.charba.client.configuration with parameters of type IsInteractionMode Modifier and Type Method Description void
Hover. setMode(IsInteractionMode mode)
Sets which elements appear in the chart, hovering the chart.void
Interaction. setMode(IsInteractionMode mode)
Sets which elements appear in the interaction.void
Tooltips. setMode(IsInteractionMode mode)
Sets which elements appear in the tooltip. -
Uses of IsInteractionMode in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return IsInteractionMode Modifier and Type Method Description IsInteractionMode
IsDefaultInteraction. getMode()
Returns which elements appear in the tooltip.IsInteractionMode
IsDefaultTooltips. getMode()
Returns which elements appear in the tooltip. -
Uses of IsInteractionMode in org.pepstock.charba.client.defaults.chart
Methods in org.pepstock.charba.client.defaults.chart that return IsInteractionMode Modifier and Type Method Description IsInteractionMode
DefaultChartInteraction. getMode()
IsInteractionMode
DefaultChartTooltips. getMode()
-
Uses of IsInteractionMode in org.pepstock.charba.client.defaults.globals
Methods in org.pepstock.charba.client.defaults.globals that return IsInteractionMode Modifier and Type Method Description IsInteractionMode
DefaultInteraction. getMode()
IsInteractionMode
DefaultTooltips. getMode()
-
Uses of IsInteractionMode in org.pepstock.charba.client.enums
Classes in org.pepstock.charba.client.enums that implement IsInteractionMode Modifier and Type Class Description class
DefaultInteractionMode
When configuring interaction with the graph via hover or tooltips, a number of different modes are available to set which elements appear via tooltip or hover.Methods in org.pepstock.charba.client.enums that return IsInteractionMode Modifier and Type Method Description static IsInteractionMode
IsInteractionMode. create(String mode)
Returns an interaction mode instance by its string value.IsInteractionMode
DefaultInteractionMode. getMode()
-
Uses of IsInteractionMode in org.pepstock.charba.client.interaction
Methods in org.pepstock.charba.client.interaction that return IsInteractionMode Modifier and Type Method Description IsInteractionMode
Interactions. getInteractionMode(String name)
Returns the interaction mode.
If not exists, returnsnull
.IsInteractionMode
AbstractInteractioner. getMode()
IsInteractionMode
Interactioner. getMode()
Returns the name of interaction mode which must be used in chart options.Methods in org.pepstock.charba.client.interaction with parameters of type IsInteractionMode Modifier and Type Method Description Interactioner
Interactions. getInteractioner(IsInteractionMode mode)
Returns the interactioner.
If not exists, returnsnull
.void
Interactions. unregister(IsInteractionMode mode)
Unregister the custom interaction mode to CHART.JS. -
Uses of IsInteractionMode in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return IsInteractionMode Modifier and Type Method Description IsInteractionMode
InteractionOptions. getMode()
Returns which elements appear in the interaction.Methods in org.pepstock.charba.client.items with parameters of type IsInteractionMode Modifier and Type Method Description void
InteractionOptions. setMode(IsInteractionMode mode)
Sets which elements appear in the interaction.Constructors in org.pepstock.charba.client.items with parameters of type IsInteractionMode Constructor Description InteractionOptions(IsInteractionMode mode)
Creates an interaction item with passed mode and all other configuration as defaults.InteractionOptions(IsInteractionMode mode, boolean intersect)
Creates an interaction item with passed mode and intersect and all other configuration as defaults.InteractionOptions(IsInteractionMode mode, boolean intersect, InteractionAxis axis)
Creates an interaction item with all passed arguments.
-