ChartJS: Show default tooltip onclick
For Chart.js v2, you can specify those events at the root level of chart options.
options: {
events: ['click']
}
Just add "click"
to your tooltipEvents
list when specifying the options for the chart
...
tooltipEvents: ["mousemove", "touchstart", "touchmove", "click"],
});
In the fiddle below, I've removed all other events from the list except for click
to give you an idea of how it will be like on a mobile
Fiddle - http://jsfiddle.net/8uobybv3/