Код: Выделить всё
const custplugin = {
id: 'custplugin',
beforeDraw: (chart) => {
if (image.complete) {
const ctx = chart.ctx;
const {top, left, width, height} = chart.chartArea;
const x = left + width / 2 - image.width / 2;
const y = top + height / 2 - image.height / 2;
ctx.drawImage(image, x, y);
} else {
image.onload = () => chart.draw();
}
}
};
Подробнее здесь: https://stackoverflow.com/questions/795 ... o-that-dat
Мобильная версия