This commit is contained in:
syuilo 2022-02-08 23:15:43 +09:00
parent adf3493af8
commit f50dd5d677

View file

@ -512,34 +512,42 @@ export default defineComponent({
name: 'Users', name: 'Users',
type: 'area', type: 'area',
data: format(raw.users), data: format(raw.users),
color: '#888888',
}, { }, {
name: 'Noted', name: 'Noted',
type: 'area', type: 'area',
data: format(raw.notedUsers), data: format(raw.notedUsers),
color: colors.blue,
}, { }, {
name: '< Week', name: '< Week',
type: 'area', type: 'area',
data: format(raw.registeredWithinWeek), data: format(raw.registeredWithinWeek),
color: colors.green,
}, { }, {
name: '< Month', name: '< Month',
type: 'area', type: 'area',
data: format(raw.registeredWithinMonth), data: format(raw.registeredWithinMonth),
color: colors.yellow,
}, { }, {
name: '< Year', name: '< Year',
type: 'area', type: 'area',
data: format(raw.registeredWithinYear), data: format(raw.registeredWithinYear),
color: colors.red,
}, { }, {
name: '> Week', name: '> Week',
type: 'area', type: 'area',
data: format(raw.registeredOutsideWeek), data: format(raw.registeredOutsideWeek),
color: colors.yellow,
}, { }, {
name: '> Month', name: '> Month',
type: 'area', type: 'area',
data: format(raw.registeredOutsideMonth), data: format(raw.registeredOutsideMonth),
color: colors.red,
}, { }, {
name: '> Year', name: '> Year',
type: 'area', type: 'area',
data: format(raw.registeredOutsideYear), data: format(raw.registeredOutsideYear),
color: colors.purple,
}], }],
}; };
}; };