Options
All
  • Public
  • Public/Protected
  • All
Menu

The tooltip class provides a mechanism to display a tooltip, usually in response to the mouse entering some region.

Hierarchy

Index

Constructors

constructor

  • new BaseTooltip(tooltipDivId: string, tooltipStyle?: string): BaseTooltip
  • Create at tooltip instance.

    params

    tooltipDivId - The ID for the div that is to be filled with the tooltip information.

    Parameters

    • tooltipDivId: string
    • Default value tooltipStyle: string = "tooltip-t"

      css class that describes tooltip format. Defaults to tooltip-t.

    Returns BaseTooltip

Properties

Protected _alwaysRecalcWidth

_alwaysRecalcWidth: boolean

Flag whether we should always recalcuate the tooltip width

Protected _analyticsName

_analyticsName: string

Name for analytics events for this tooltip

Protected _counter

_counter: number

Debugging aid - set to a unique value for each tooltip instance

Protected _delayMS

_delayMS: number

Delay in milliseconds for showing the tooltip when the mouse enters the target region

Protected _disabled

_disabled: boolean

Set if the caller has decided to disable the tooltip by calling Enabled()

Protected _enterfunc

_enterfunc: ITooltipCallback

Function to be called when the mouse enters the target region

Protected _hide

_hide: string

Value to set 'display' attribute to to to hide tooltip

Protected _lastShowTs

_lastShowTs: number

Delay in milliseconds for showing the tooltip when the mouse enters the target region

Protected _leavefunc

_leavefunc: ITooltipCallback

Function to be called when the mouse leaves the target region

Protected _movefunc

_movefunc: ITooltipCallback

Function to be called when the mouse moves in the target region

Protected _targets

_targets: any[]

the targets who this tooltip is listening to

Protected _timerId

_timerId: number

ID for the timer used to delay appearance of the tooltip

Protected _tooltipBackgroundColor

_tooltipBackgroundColor: string

Tooltip background color

Protected _tooltipDiv

_tooltipDiv: HTMLDivElement

div containing the tooltip to be displayed

Protected _tooltipFontColor

_tooltipFontColor: string

Tooltip font color

Protected _tooltipFontSize

_tooltipFontSize: string

Tooltip font size

Protected _tooltipFontType

_tooltipFontType: string

Tooltip font type

Protected _tooltipHeight

_tooltipHeight: number

Height of the tooltip div

Protected _tooltipLeftOfMouse

_tooltipLeftOfMouse: boolean

Flag whether the tooltip should be shown to the left of the mouse.

Only used by _PlaceTooltipLeftRight

Protected _tooltipOffset

_tooltipOffset: number

Additional pixels to offset the tooltip from the mouse

Protected _tooltipPlacementFunc

_tooltipPlacementFunc: ITooltipPlacementFunc

Function to place the tooltip

Protected _tooltipWidth

_tooltipWidth: number

Width of the tooltip div

Protected _visibilityTimeoutCallLeaveFunction

_visibilityTimeoutCallLeaveFunction: boolean

Whether the leave function should be called when the tooltip is hidden.

Protected _visibilityTimeoutSecs

_visibilityTimeoutSecs: number

Seconds a tooltip should be visible. 0 Specifies that there is no timeout.

Protected _visibilityTimerId

_visibilityTimerId: number

Time ID for the visibility timeout

Protected _windowHeight

_windowHeight: number

Height of the browser window

Protected _windowWidth

_windowWidth: number

Width of the browser window

onMouseEnter

onMouseEnter: function

Mouse enter function applied to the target. The mouse enter function handles calling an enter function, if one was specified, and delaying the display of the tooltip

Type declaration

    • (d: any): void
    • Parameters

      • d: any

      Returns void

onMouseLeave

onMouseLeave: function

Mouse leave function applied to the target. The mouse leave function cancels any pending timers, calls the exit function, if one was specified, and hides the tooltip.

Type declaration

    • (d: any): void
    • Parameters

      • d: any

      Returns void

onMouseMove

onMouseMove: function

Mouse move function applied to the target. The mouse move function calls the move function, if one was specifies, and then moves the tooltip div to keep in near the mouse cursor.

Type declaration

    • (d: any, pos?: any): void
    • Parameters

      • d: any
      • Optional pos: any

      Returns void

Static Protected _counter

_counter: number = 0

Counter used to generate a unique value for each tooltip

Static Protected _defaultDelayMS

_defaultDelayMS: number = 500

Default delay for showing a tooltip (.5 second)

Methods

Protected adjustVerticalPosition

  • adjustVerticalPosition(top: number, bottom: number): void

alwaysRecalcWidth

  • Set whether to recalculate the tooltip width every time the cursor moves.

    Defaults to false

    Parameters

    • value: boolean

      Whether to recalculate the tooltip width every time the cursor moves.

    Returns BaseTooltip

Protected defaultTooltipPlacement

  • defaultTooltipPlacement(event: object): void
  • Default Tooltip placement routine. Attempts to make the entire tooltip visibile without covering the mouse.

    Parameters

    • event: object
      • clientX: number
      • clientY: number
      • x: number
      • y: number

    Returns void

displayTooltip

  • Display the tooltip div after a delay

    Parameters

    • delayMS: number

      milliseconds to delay before showing the tooltip

    Returns BaseTooltip

    • The tooltip instance.

hideTooltip

Protected placeTooltipLeft

  • placeTooltipLeft(event: any): void
  • Tooltip placement routine to place the tooltip to the left of the mouse. Designed to be used for the chart value tooltip.

    Parameters

    • event: any

    Returns void

Protected placeTooltipLeftRight

  • placeTooltipLeftRight(event: any): void
  • Tooltip placement routine to place the tooltip to the right or left of the mouse. Designed to be used for the chart value tooltip.

    The placement (left or right of the mouse) is changed if the mouse is in the left or right third of the window. Placement is left alone in the middle third.

    Parameters

    • event: any

    Returns void

releaseListeners

  • releaseListeners(): void
  • Release all tooltip listeners on the target. Failure to release the listeners can prevent the target from being freed.

    Returns void

setAnalyticsName

  • Set the analytics name for the tooltip. Not currently used.

    Parameters

    • value: string

      The analytics name to report when this tooltip is shown or hidden.

    Returns BaseTooltip

    • The tooltip instance.

setBackgroundColor

  • Override tooltip background color. The background color is applied to the tooltip div immediately.

    Parameters

    • color: string

    Returns BaseTooltip

    • The tooltip instance.

setCssClass

  • Set the CSS class for the tooltip. The class is applied immediately.

    Parameters

    • cssClass: string

      The CSS class(es) to apply to this tooltip.

    Returns BaseTooltip

    • The tooltip instance.

setDelay

  • When the mouse enters the target region, instead of instantly showing the tooltip, there's a small delay. This prevents the tooltip from popping up and disappearing if the user is just moving the mouse over the target region instead of waiting for information. By default, the delay is 1 second.

    Parameters

    • milliseconds: number

      The number of milliseconds to delay showing the tooltip after the mouse enters the target region.

    Returns BaseTooltip

    • The tooltip instance.

setEnabled

setEnterCallback

  • Set the function to be called when the mouse moves into the target DOM object(s)

    Parameters

    • enterfunc: ITooltipCallback

      The function to be called when the mouse moves into the target DOM object. If the tooltip will only be shown if the enterfunc returns true.

    Returns BaseTooltip

    • The tooltip instance.

setFontColor

  • Override tooltip font color. The font color is applied to the tooltip div immediately.

    Parameters

    • color: string

    Returns BaseTooltip

    • The tooltip instance.

setFontSize

  • Override tooltip font size. The font size is applied to the tooltip div immediately.

    Parameters

    • size: string

    Returns BaseTooltip

    • The tooltip instance.

setFontType

  • Override tooltip font type. The font family is applied to the tooltip div immediately.

    Parameters

    • font: string

    Returns BaseTooltip

    • The tooltip instance.

setHideDisplayValue

  • HideDisplayValue

    The value the CSS 'display' attribute will be set to to hide the tooltip. This defaults to 'none'. 'display' will be set to 'block' when the tooltip is to be visible.

    Parameters

    • hide: string

    Returns BaseTooltip

setLeaveCallback

  • Set the function to be called when the mouse moves off of the target DOM object(s)

    Parameters

    • leavefunc: ITooltipCallback

      The function to be called when the mouse moves off of the target DOM object.

    Returns BaseTooltip

    • The tooltip instance.

setMoveCallback

setOffset

setPlaceTooltipLeft

setPlaceTooltipLeftRight

setTarget

  • Set the target for the tooltip

    Parameters

    • target: any

      The selection of DOM objects that should cause the tooltip to appear.

    Returns BaseTooltip

    • The tooltip instance.

setVisibilityTimeout

  • setVisibilityTimeout(seconds: number, callLeaveFunctionOnTimeout?: boolean): BaseTooltip
  • Sets a limit on the time a tooltip is visible.

    Parameters

    • seconds: number

      Seconds the tooltip should be visible

    • Default value callLeaveFunctionOnTimeout: boolean = true

      True if the leave function should be called when the timeout occurs.

    Returns BaseTooltip

    • The tooltip instance.

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Type alias with type parameter
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method

Generated using TypeDoc