@amad3v/solid-echarts - v1.0.2
    Preparing search index...

    Variable seSetupConst

    seSetup: Setup = ...

    Registers ECharts charts, components, and renderers once at the app root.

    Must be called before any SolidEChart component mounts. Internally calls ECharts' use - safe to call multiple times, subsequent calls are no-ops for already-registered extensions.

    Array of ECharts chart types, components, and renderers to register. Passed directly to echarts.use. Only registered extensions are included in the bundle, tree-shaking sees through the re-exports.

    import {
    seSetup,
    BarChart,
    LineChart,
    GridComponent,
    TooltipComponent,
    CanvasRenderer,
    } from 'solid-echarts';

    seSetup([BarChart, LineChart, GridComponent, TooltipComponent, CanvasRenderer]);