[Chartjs]-Chart.js tooltip not showing on line chart

5👍

For anyone having problems with this using Chartjs v3, you need to make sure you have registered the Tooltip plugin:

import { Chart, Tooltip } from 'chart.js'

Chart.register([Tooltip])

Leave a comment