([, chartSize, chartStyle]: RefAndLayout)
| 50 | }; |
| 51 | |
| 52 | export const getPlotSize = ([, chartSize, chartStyle]: RefAndLayout) => { |
| 53 | const [, , width, height] = getPlotFrame(chartSize, chartStyle); |
| 54 | return [width, height] as const; |
| 55 | }; |
| 56 | |
| 57 | export const getLabelSize = ([, , chartStyle]: RefAndLayout) => chartStyle[6]; |
| 58 |
no test coverage detected
searching dependent graphs…