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 IsInteractionModeHover. getMode()Returns which elements appear in the chart, hovering the chart.IsInteractionModeInteraction. getMode()Returns which elements appear in the interaction.IsInteractionModeTooltips. 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 voidHover. setMode(IsInteractionMode mode)Sets which elements appear in the chart, hovering the chart.voidInteraction. setMode(IsInteractionMode mode)Sets which elements appear in the interaction.voidTooltips. 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 IsInteractionModeIsDefaultInteraction. getMode()Returns which elements appear in the tooltip.IsInteractionModeIsDefaultTooltips. 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 IsInteractionModeDefaultChartInteraction. getMode()IsInteractionModeDefaultChartTooltips. 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 IsInteractionModeDefaultInteraction. getMode()IsInteractionModeDefaultTooltips. 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 classDefaultInteractionModeWhen 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 IsInteractionModeIsInteractionMode. create(String mode)Returns an interaction mode instance by its string value.IsInteractionModeDefaultInteractionMode. 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 IsInteractionModeInteractions. getInteractionMode(String name)Returns the interaction mode.
If not exists, returnsnull.IsInteractionModeAbstractInteractioner. getMode()IsInteractionModeInteractioner. 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 InteractionerInteractions. getInteractioner(IsInteractionMode mode)Returns the interactioner.
If not exists, returnsnull.voidInteractions. 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 IsInteractionModeInteractionOptions. 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 voidInteractionOptions. 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.
-