Expand views

This commit is contained in:
James Cole
2023-08-09 14:13:32 +02:00
parent deb51bd8de
commit 3925077223
7 changed files with 322 additions and 82 deletions

View File

@@ -27,6 +27,14 @@ function getDefaultChartSettings(type) {
}
}
}
if ('pie' === type) {
return {
type: 'pie',
data: {
datasets: [],
}
}
}
if ('column' === type) {
return {
type: 'bar',