diff options
Diffstat (limited to 'packages/client/src/components')
| -rw-r--r-- | packages/client/src/components/chart.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/client/src/components/chart.vue b/packages/client/src/components/chart.vue index dc1ea2b2d8..7a716036bb 100644 --- a/packages/client/src/components/chart.vue +++ b/packages/client/src/components/chart.vue @@ -71,6 +71,7 @@ const colors = { purple: '#e300db', orange: '#fe6919', lime: '#c7f400', + cyan: '#00efef', }; const colorSets = [colors.blue, colors.green, colors.yellow, colors.red, colors.purple]; const getColor = (i) => { @@ -389,10 +390,15 @@ export default defineComponent({ data: format(raw.stalled), color: colors.red, }, { + name: 'Active', + type: 'line', + data: format(raw.active), + color: colors.lime, + }, { name: 'Pub & Sub', type: 'line', data: format(raw.pubsub), - color: colors.lime, + color: colors.cyan, }, { name: 'Pub', type: 'line', |