[Chartjs]-Mixed bubble chart with line chart in vue-chartjs4

3๐Ÿ‘

โœ…

As your error states you need to import and register the LineController

import {Chart, LineController} from 'chart.js';

Chart.register(LineController);

Or you can just import everything and let chart.js register it:

import Chart from 'chart.js/auto'

Leave a comment