Home Forums Report Bugs Unable to get points for the bar chart to hover Reply To: Unable to get points for the bar chart to hover

#19648

@shikha,

Events are not being captured in toolTip. So overriding style to toolTip class should work fine in your case. Please try adding following CSS.

.canvasjs-chart-tooltip, .canvasjs-chart-tooltip > *{
     pointer-events: auto !important;
     -webkit-user-select: auto !important; /* Safari 3.1+ */
     -moz-user-select: auto !important; /* Firefox 2+ */
     -ms-user-select: auto !important; /* IE 10+ */
     user-select: auto !important; /* Standard syntax */
  } 

Also please take a look at mouseover event handler function where you can get dataSeries, dataPoints, etc values just by hovering on dataPoint.

Vishwas R
Team CanvasJS