1👍
It is possible that below reasons cause this issue.
-> IE and Edge does not support globalAlpha for drawImage of SVG graphics.
-> IE 10 canvas doesn’t support setLineDash or lineDashOffset.
-> In IE 11 canvas.toDataURL() does not work if the canvas has images
with data URI sources.
Reference:
You need to contact Chart JS for support. This library is developed by them. so they may available with any solution for this.
0👍
Ok I have fixed the problem, for line chart problem it was enough to switch from RGBA to HEX colors, thin font was fixed just by changing the font family and it’s weight – same with the legend.
scales: {
xAxes: [{
stacked: true,
barPercentage: 0.6,
fontStyle: 'bold',
ticks: {
fontFamily: "Verdana",
fontStyle: 400
}
}],
yAxes: [{
stacked: true,
fontStyle: "bold",
fontSize: 80,
ticks: {
fontFamily: "Verdana",
fontStyle: 400,
}
}]
},
- [Chartjs]-Legend not displaying on Line or Bar chart – React-Chartjs-2
- [Chartjs]-Cannot read property 'transition' null chartjs
Source:stackexchange.com