Vue Chart - tooltip

Selector: DxTooltip
Type:

Tooltip

A tooltip is a miniature rectangle displaying values of a series point. A tooltip appears when the end-user hovers the cursor over a series point. You can enable/disable tooltips, change their appearance and format their text using fields of the tooltip configuration object.

View Demo

argumentFormat

Formats the point argument before it is displayed in the tooltip. To format the point value, use the format property.

Selector: DxArgumentFormat
Type:

Format

| undefined
Default Value: undefined
See Also
  • format - provides a comprehensive overview of formatting capabilities.
  • Value Formatting - shows how to apply formatting to various UI component elements.

arrowLength

Specifies the length of a tooltip's arrow in pixels.

Type:

Number

Default Value: 10

border

Configures a tooltip's border.

Selector: DxBorder
Type:

Object

color

Colors all tooltips.

Type:

String

Default Value: '#ffffff'

This property supports the following colors:

This property sets one color for all tooltips. You can specify a particular tooltip's color in the tooltip.customizeTooltip function.

container

Specifies the container in which to draw tooltips. The default container is the HTML DOM <body> element.

Type:

String

|

HTMLElement | jQuery

| undefined
Default Value: undefined

contentTemplate

Selector: content-template
Type:

template

| undefined
Function parameters:
pointInfo:

dxChartPointInfo

element:

HTMLElement | jQuery

Return Value:

String

|

Element

|

jQuery

Default Value: undefined

cornerRadius

Makes all the tooltip's corners rounded.

Type:

Number

Default Value: 0, 4 (Fluent, Material)

The following table demonstrates how the corner's curvature depends on the cornerRadius value:

cornerRadius Result
cornerRadius: 0 DevExtreme Chart: tooltip with cornerRadius set to 0
cornerRadius: 15 DevExtreme Chart: tooltip with cornerRadius set to 15
cornerRadius: 35 DevExtreme Chart: tooltip with cornerRadius set to 35

customizeTooltip

Selector: customize-tooltip
Type:

Function

| undefined
Function parameters:
pointInfo:

dxChartPointInfo

Return Value:

Object

Default Value: undefined
Cannot be used in themes.

enabled

Enables tooltips.

Type:

Boolean

Default Value: false

font

Specifies tooltips' font properties.

Selector: DxFont
Type:

Object

format

Formats a value before it is displayed it in a tooltip.

Type:

Format

| undefined
Default Value: undefined

See the format section for information on accepted values.

See Also

interactive

Allows users to interact with the tooltip content.

Type:

Boolean

Default Value: false

location

Specifies whether the tooltip must be located in the center of a series point or on its edge. Applies to bar-like and bubble series only.

Default Value: 'center'
This member is exposed by the following entities:

opacity

Specifies tooltips' transparency.

Type:

Number

| undefined
Default Value: undefined

This property accepts a value from 0 to 1, where 0 makes tooltips completely transparent, and 1 makes them opaque.

paddingLeftRight

Generates an empty space, measured in pixels, between a tooltip's left/right border and its text.

Type:

Number

Default Value: 18

DevExtreme HTML5 JavaScript Funnel Tooltips Left-Right Padding

paddingTopBottom

Generates an empty space, measured in pixels, between a tooltip's top/bottom border and its text.

Type:

Number

Default Value: 15

DevExtreme HTML5 JavaScript Funnel Tooltips Top-Bottom Padding

shadow

Configures a tooltip's shadow.

Selector: DxShadow
Type:

Object

shared

Specifies whether the tooltip is shared across all series points with the same argument.

Type:

Boolean

Default Value: false

This property can have one of the following values:

tooltip.shared Description
false The tooltip only displays information about a series point that is hovered over with the mouse pointer.
true The tooltip displays information about all series points with the same argument as the point that is hovered over. If this point is included in a stack, the tooltip only displays information about points in this stack and points that do not belong to any stack (if there are any).

View Demo

See Also

zIndex

Specifies a tooltip's z-index.

Type:

Number

| undefined
Default Value: undefined

If the UI component's container has the CSS z-index property specified, and tooltips are displayed incorrectly, configure their z-index using this property.