mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
fix(client): Fix lint
This commit is contained in:
parent
3eaf223420
commit
342077f51b
1 changed files with 8 additions and 8 deletions
|
@ -5,14 +5,14 @@ import { values, utils } from '@syuilo/aiscript';
|
||||||
|
|
||||||
// https://stackoverflow.com/questions/38493564/chart-area-background-color-chartjs
|
// https://stackoverflow.com/questions/38493564/chart-area-background-color-chartjs
|
||||||
Chart.pluginService.register({
|
Chart.pluginService.register({
|
||||||
beforeDraw: function (chart, easing) {
|
beforeDraw: (chart, easing) => {
|
||||||
if (chart.config.options.chartArea && chart.config.options.chartArea.backgroundColor) {
|
if (chart.config.options.chartArea && chart.config.options.chartArea.backgroundColor) {
|
||||||
const ctx = chart.chart.ctx;
|
const ctx = chart.chart.ctx;
|
||||||
ctx.save();
|
ctx.save();
|
||||||
ctx.fillStyle = chart.config.options.chartArea.backgroundColor;
|
ctx.fillStyle = chart.config.options.chartArea.backgroundColor;
|
||||||
ctx.fillRect(0, 0, chart.chart.width, chart.chart.height);
|
ctx.fillRect(0, 0, chart.chart.width, chart.chart.height);
|
||||||
ctx.restore();
|
ctx.restore();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue