[Chartjs]-React-chartjs-2 fill property not working?

64👍

This is because you are using treeshaking and not importing/registering the filler plugin.

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

Chart.register(Filler);

Leave a comment