User Interaction
When a user pauses on a series point, it changes its style to the one specified by the following objects.
series.point.hoverStyle
The hover style for all points of an individual series.commonSeriesSettings.%seriesType%.point.hoverStyle
The hover style for all points belonging to a series of a specific type (line, area, etc.).commonSeriesSettings.point.hoverStyle
The hover style for all series points in the Chart.
Note that individual settings override type-specific settings which, in turn, override common settings.
jQuery
$(function() { $("#chartContainer").dxChart({ // ... series: { point: { hoverStyle: { // high priority } } }, commonSeriesSettings: { area: { point: { hoverStyle: { // middle priority } } }, point: { hoverStyle: { // low priority } } } }); });
Angular
<dx-chart ... > <dxi-series ... > <dxo-point> <dxo-hover-style> <!-- high priority --> </dxo-hover-style> </dxo-point> </dxi-series> <dxo-common-series-settings ... > <dxo-point> <dxo-hover-style> <!-- low priority --> </dxo-hover-style> </dxo-point> <dxo-area> <dxo-point> <dxo-hover-style> <!-- middle priority --> </dxo-hover-style> </dxo-point> </dxo-area> </dxo-common-series-settings> </dx-chart>
import { DxChartModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxChartModule ], // ... })
To choose which series elements should be highlighted when a user pauses on a series point, specify the hoverMode option. Just like hoverStyle above, this option can be specified for all points belonging to an individual series, or for all points belonging to a series of a specific type, or for all series points in the Chart.
jQuery
$(function() { $("#chartContainer").dxChart({ // ... commonSeriesSettings: { point: { hoverMode: 'allArgumentPoints' // or 'onlyPoint' | 'allSeriesPoints' | 'none' } } }); });
Angular
<dx-chart ... > <dxo-common-series-settings ... > <dxo-point hoverMode="allArgumentPoints"> <!-- or 'onlyPoint' | 'allSeriesPoints' | 'none' --> </dxo-point> </dxo-common-series-settings> </dx-chart>
import { DxChartModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxChartModule ], // ... })
See Also
API
You can switch a point into the hover state by calling its hover() method, and its clearHover() method to switch it back to the normal state. The same API is available for series.
jQuery
var togglePointHoverState = function (point) { !point.isHovered() ? point.hover() : point.clearHover(); }
Angular
import { DxChartModule } from "devextreme-angular"; // ... export class AppComponent { togglePointHoverState (point) { !point.isHovered() ? point.hover() : point.clearHover(); } } @NgModule({ imports: [ // ... DxChartModule ], // ... })
See Also
- Access a Series Point Using the API
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
Events
When a user pauses on a series point, the Chart fires the pointHoverChanged event that you can handle with a function. If the handling function is not going to be changed during the lifetime of the widget, assign it to the onPointHoverChanged option when you configure the widget. To check whether the pointer entered or left a series, call the isHovered() method of the series.
jQuery
$(function() { $("#chartContainer").dxChart({ // ... onPointHoverChanged: function (e) { var point = e.target; if (point.isHovered()) { // Commands to execute when the point is hovered over } else { // Commands to execute when the point is hovered out } } }); });
Angular
<dx-chart (onPointHoverChanged)="onPointHoverChanged($event)"> </dx-chart>
import { DxChartModule } from "devextreme-angular"; // ... export class AppComponent { onPointHoverChanged (e) { let point = e.target; if (point.isHovered()) { // Commands to execute when the point is hovered over } else { // Commands to execute when the point is hovered out } }; } @NgModule({ imports: [ // ... DxChartModule ], // ... })
If you are going to change the event handler at runtime or if you need to attach several handlers to the pointHoverChanged event, subscribe to this event using the on(eventName, eventHandler) method. This approach is more typical of jQuery.
var pointHoverChangedHandler1 = function (e) { var point = e.target; // First handler of the "pointHoverChanged" event }; var pointHoverChangedHandler2 = function (e) { var point = e.target; // Second handler of the "pointHoverChanged" event }; $("#chartContainer").dxChart("instance") .on("pointHoverChanged", pointHoverChangedHandler1) .on("pointHoverChanged", pointHoverChangedHandler2);
See Also
- Handle Events: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
- Series Hover Events
- Chart API Reference
If you have technical questions, please create a support ticket in the DevExpress Support Center.