React Chart - Crosshair
Crosshair is a pointer represented by two mutually-crossing lines stretched over the entire chart plot. The crosshair helps a user identify values of the series points precisely. When enabled, the crosshair follows the cursor and snaps to the nearest series point.
To enable the crosshair, set the crosshair.enabled property to true. To show the crosshair labels, do the same with the crosshair.label.visible property.
jQuery
$(function() { $("#chartContainer").dxChart({ // ... crosshair: { enabled: true, label: { visible: true } } }); });
Angular
<dx-chart ... > <dxo-crosshair [enabled]="true"> <dxo-label [visible]="true"></dxo-label> </dxo-crosshair> </dx-chart>
import { DxChartModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxChartModule ], // ... })
Vue
<template> <DxChart ... > <DxCrosshair :enabled="true"> <DxLabel :visible="true"/> </DxCrosshair> </DxChart> </template> <script> import DxChart, { DxCrosshair, DxLabel } from 'devextreme-vue/chart'; export default { components: { DxChart, DxCrosshair, DxLabel } } </script>
React
import React from 'react'; import Chart, { Crosshair, Label } from 'devextreme-react/chart'; class App extends React.Component { render() { return ( <Chart ... > <Crosshair enabled={true}> <Label visible={true}/> </Crosshair> </Chart> ); } } export default App;
For information about all properties of the crosshair and its labels, visit the crosshair section of the API reference.
If you have technical questions, please create a support ticket in the DevExpress Support Center.