using react chartjs i m trying to download chart as a image. this is my code:
const saveAsImage = () => {
const imageLink = document.createElement('a');
imageLink.download ='img.png';
imageLink.href =chartRef.current.toBase64Image('image/jpg', 1);
imageLink.click();
}
downloaded image background colour should be clear