如何为Chartjs背景添加多种颜色?我已经添加了单色,但是我想要的就像下图所示
这是我的代码
chartArea: {
backgroundColor:'rgba(251, 85, 85, 0.2)',
}
我如下使用插件服务
Chart.pluginService.register({
beforeDraw: function (chart, easing) {
if (chart.config.options.chartArea && chart.config.options.chartArea.backgroundColor) {
var helpers = Chart.helpers;
var ctx = chart.chart.ctx;
var chartArea = chart.chartArea;
ctx.save();
ctx.fillStyle = chart.config.options.chartArea.backgroundColor;
ctx.fillRect(chartArea.left, chartArea.top, chartArea.right - chartArea.left, chartArea.bottom - chartArea.top);
ctx.restore();
}
}
});
谢谢。
这可以通过chartjs-plugin-annotation的框注释功能来实现。https://github.com/chartjs/chartjs-plugin-annotation