8👍
✅
You need to set fill
to true in your dataset. And depending on if you are using treeshaking you also will need to import and register filler
from chart.js.
const data = {
labels: ["1 Dec", "8 Dec", "16 Dec", "31 Dec"],
datasets: [
{
label: "Sales Made",
data: [3, 7, 4, 5],
borderColor: ["#03A9F5"],
fill: true,
backgroundColor: 'pink'
},
],
};
Source:stackexchange.com