When setting the backgroundColour and devicePixelRatio: 2, the background color is applied to the correct width, but not the full hight.
I assume that the issue is that the hight is the one not scaled to the 2x ratio.
const canvasOptions: ChartJSNodeCanvasOptions = {
width,
height,
backgroundColour: '#f00'
}
const chartJSNodeCanvas = new ChartJSNodeCanvas(canvasOptions);
const configuration = {
// ...
options: {
devicePixelRatio: 2,
}
};
chartJSNodeCanvas.renderToBuffer(configuration);
Versions
- Chart.JS version: 3.9.1
- chartj-node-canvas version: 4.1.6
I currently work around this by using the following chartCallback:
const canvasOptions: ChartJSNodeCanvasOptions = {
width,
height,
backgroundColour,
chartCallback: (ChartJS) => {
ChartJS.register({
id: 'my_background_color',
beforeDraw: (chart, _options) => {
const ctx = chart.ctx;
ctx.save();
ctx.fillStyle = backgroundColour;
ctx.fillRect(0, 0, width, chart.height); // <- note the `chart.height` here, which gives the correct result. I am not sure why just `width` works though. It's a bit odd.
ctx.restore();
}
});
}
};
When setting the backgroundColour and
devicePixelRatio: 2, the background color is applied to the correct width, but not the full hight.I assume that the issue is that the hight is the one not scaled to the 2x ratio.
Versions
I currently work around this by using the following
chartCallback: