[Chartjs]-Chartjs backgroundColor for line chart does not appear in Vue app

9👍

Please check the registrar file for chart js in your project. Add Filler to Chart.register()

import {
  ...,
  Filler,
} from 'chart.js';

Chart.register(
...,
Filler,
);

Leave a comment