Update chart colors to match spec (https://github.com/woocommerce/woocommerce-admin/pull/1731)
* Update chart color scale to match woocommerce/woocommerce-admin#375 * Avoid useless calls to 'getColor'
This commit is contained in:
parent
27acab72b8
commit
584f0f26f0
|
@ -7,7 +7,7 @@ export const colorScales = [
|
||||||
[],
|
[],
|
||||||
[ 0.5 ],
|
[ 0.5 ],
|
||||||
[ 0.333, 0.667 ],
|
[ 0.333, 0.667 ],
|
||||||
[ 0.25, 0.50, 0.75 ],
|
[ 0.2, 0.50, 0.8 ],
|
||||||
[ 0.20, 0.40, 0.60, 0.80 ],
|
[ 0.12, 0.375, 0.625, 0.88 ],
|
||||||
[ 0.16, 0.32, 0.48, 0.64, 0.80 ],
|
[ 0, 0.25, 0.5, 0.75, 1 ],
|
||||||
];
|
];
|
||||||
|
|
|
@ -114,7 +114,7 @@ class D3Legend extends Component {
|
||||||
'woocommerce-legend__item-checkmark-checked': row.visible,
|
'woocommerce-legend__item-checkmark-checked': row.visible,
|
||||||
} ) }
|
} ) }
|
||||||
id={ row.key }
|
id={ row.key }
|
||||||
style={ { color: getColor( keys, colorScheme )( row.key ) } }
|
style={ row.visible ? { color: getColor( keys, colorScheme )( row.key ) } : null }
|
||||||
/>
|
/>
|
||||||
<span className="woocommerce-legend__item-title" id={ row.key }>
|
<span className="woocommerce-legend__item-title" id={ row.key }>
|
||||||
{ row.key }
|
{ row.key }
|
||||||
|
|
Loading…
Reference in New Issue