(ele)
| 573 | |
| 574 | /* Usefull in focussing an element after it appears on the screen */ |
| 575 | export function requestAnimationAndFocus(ele) { |
| 576 | if(!ele) return; |
| 577 | |
| 578 | const animateId = requestAnimationFrame(()=>{ |
| 579 | ele?.focus?.(); |
| 580 | cancelAnimationFrame(animateId); |
| 581 | }); |
| 582 | } |
| 583 | |
| 584 | const CHART_THEME_COLORS = { |
| 585 | 'light':['#1F77B4', '#FF7F0E', '#2CA02C', '#D62728', '#9467BD', '#8C564B', |
no test coverage detected