[Chartjs]-Show gridlines over graph in chart.js, show bold x-axis label in chart.js, mixure of intersecting graph colors in chart.js

0👍

After you’ve generated graph by,

const canvasmixedBarLine: any = document.getElementById('mixedBarLine');

const ctxmixedBarLine: any = canvasmixedBarLine.getContext('2d');

const mixedBarLine = new Chart(ctxmixedBarLine, {});

try putting this line after that:

ctxmixedBarLine.globalCompositeOperation = 'destination-over';

Leave a comment