add parts of statistics ui

This commit is contained in:
MaysWind
2021-01-21 00:55:05 +08:00
parent 1f829f0225
commit 6f4bacd544
14 changed files with 468 additions and 16 deletions
+21
View File
@@ -0,0 +1,21 @@
const allChartTypes = {
Pie: 0,
Bar: 1
};
const defaultChartType = allChartTypes.Pie;
const allChartLegendTypes = {
Account: 0,
PrimaryCategory: 1,
SecondaryCategory: 1
};
const defaultChartLegendType = allChartLegendTypes.SecondaryCategory;
export default {
allChartTypes: allChartTypes,
defaultChartType: defaultChartType,
allChartLegendTypes: allChartLegendTypes,
defaultChartLegendType: defaultChartLegendType,
};