sf-i-events
Version:
Superflows Navigation Component
14 lines • 532 B
JavaScript
export const exportBackgroundPlugin = {
id: 'exportBackground',
beforeDraw: (chart, _args, options) => {
if (!(options === null || options === void 0 ? void 0 : options.exporting))
return;
const { ctx, width, height } = chart;
ctx.save();
ctx.globalCompositeOperation = 'destination-over';
ctx.fillStyle = options.color || '#ffffff';
ctx.fillRect(0, 0, width, height);
ctx.restore();
}
};
//# sourceMappingURL=exportBackgroundPlugin.js.map