react-native-echarts icon indicating copy to clipboard operation
react-native-echarts copied to clipboard

Skia is missing from renderer type

Open RafaelCENG opened this issue 11 months ago • 0 comments

I had to add my self the renderer type of skia inside echarts types

declare type RendererType = 'canvas' | 'svg' | 'skia';

Also maybe a good improvement is to consider using correct types and avoid any? For example these parts here.

  const skiaRef = useRef<any>(null)
    let chart: any

RafaelCENG avatar May 21 '25 09:05 RafaelCENG