mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 16:07:33 +08:00
add parts of statistics ui
This commit is contained in:
@@ -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,
|
||||
};
|
||||
Reference in New Issue
Block a user