feat: no border

This commit is contained in:
Anna 2021-10-23 18:35:34 -04:00
parent 5c15af145b
commit 3866766e2e
1 changed files with 4 additions and 1 deletions

View File

@ -111,7 +111,10 @@
}],
labels: data.map(entry => entry.x),
},
options: options,
options: {
borderWidth: chartType === 'doughnut' ? 0 : 2,
...options,
},
},
);
}