highlightEnabled: Boolean

Enables or Disables highlighting of dataPoint on mouse hover.


Default: true
Example: false, true

Notes
  • highlightEnabled on dataPoint overrides the one in dataSeries.

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 data:[
{
	dataPoints: [
		{ y: 10, highlightEnabled: false}
	]
},
]
 .
 . 
});
chart.render();


Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question