0👍
Can you post some code so we can see what your options look like?
In general though. In your options you can configure the different axis. The data would display on the chart body and tooltip by default. Do you have something like this in your code?
yAxes:[{
display:false,
}],
You can also disable the tooltip if you’d like by adding the following to your options.
tooltips: {
enabled: false
}
- [Vuejs]-Vue – Right way to merge two different types of data
- [Vuejs]-Vue router and recieving data from store
Source:stackexchange.com