Reverse the order highlighted points are rendered in charts (https://github.com/woocommerce/woocommerce-admin/pull/701)
This commit is contained in:
parent
9c0dd84677
commit
eda609126e
|
@ -653,7 +653,7 @@ export const drawLines = ( node, data, params ) => {
|
|||
|
||||
focusGrid
|
||||
.selectAll( 'circle' )
|
||||
.data( d => d.values )
|
||||
.data( d => d.values.reverse() )
|
||||
.enter()
|
||||
.append( 'circle' )
|
||||
.attr( 'r', dotRadius + 2 )
|
||||
|
|
Loading…
Reference in New Issue