mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 02:13:08 +02:00
🎨
This commit is contained in:
parent
adf3493af8
commit
f50dd5d677
1 changed files with 8 additions and 0 deletions
|
@ -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,
|
||||||
}],
|
}],
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue