Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

  • new MetricListTooltip(tooltipDivId: string, tooltipStyle?: string): MetricListTooltip

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 _title

_title: string

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

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

getTitle

  • getTitle(): string

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

setAnalyticsName

setBackgroundColor

setCssClass

setData

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

setFontSize

setFontType

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

setMoveCallback

setOffset

setPlaceTooltipLeft

setPlaceTooltipLeftRight

setTarget

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