I need to hide the tooltip, and found this solution for chart.js Chart.defaults.global.tooltipenabled = false;
http://stackoverflow.com/questions/36953558/hide-disable-tooltips-chart-js
how can I do that on ng2-charts?
You can add to charts options:
this.options = {
tooltips: {
enabled: false
}
}
@victorcarvalhosp
is this issue still actual for you?
Most helpful comment
You can add to charts options:
this.options = { tooltips: { enabled: false } }