ui: Topology metrics view outbound bytes color blue (#11343)

This commit is contained in:
cooleditphoto 2021-10-18 10:25:19 -04:00 committed by GitHub
parent 5eae7b7a7b
commit 2087f94cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -101,6 +101,10 @@ export default Component.extend({
// Use the grey/red we prefer by default but have more colors available in
// case user adds extra series with a custom provider.
let colorScheme = ['#DCE0E6', '#C73445'].concat(schemeTableau10);
if (keys.includes('Outbound')) {
colorScheme = ['#DCE0E6', '#0E40A3'].concat(schemeTableau10);
}
let color = scaleOrdinal(colorScheme).domain(keys);
svg