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

    Type Alias CreateChartEffectOptions

    Options for createChartEffect - controls how setOption merges the new option with the existing chart state.

    All options accept both plain values and reactive accessors. They are read with untrack inside the effect - a change to merge strategy alone does not trigger a redundant setOption call. The new values are picked up on the next natural trigger (instance or option change).

    type CreateChartEffectOptions = {
        autoMerge?: MaybeAccessor<boolean>;
        lazyUpdate?: MaybeAccessor<boolean>;
        notMerge?: MaybeAccessor<boolean>;
        replaceMerge?: MaybeAccessor<string | string[]>;
        silent?: MaybeAccessor<boolean>;
    }
    Index

    Properties

    autoMerge?: MaybeAccessor<boolean>

    When true, optionMergePlan automatically infers the correct merge strategy by diffing the previous and new option structure. Explicit notMerge and replaceMerge options are ignored when this is active.

    Eliminates the need to manually reason about notMerge and replaceMerge when series or components are added or removed. Defaults to false.

    lazyUpdate?: MaybeAccessor<boolean>

    When true, defers rendering until the next animation frame. Useful for batching multiple setOption calls. Defaults to false.

    notMerge?: MaybeAccessor<boolean>

    When true, the new option fully replaces the existing - no merging. Defaults to false.

    replaceMerge?: MaybeAccessor<string | string[]>

    Targeted component replacement. Named components are fully replaced rather than merged. E.g. ['series'] replaces all series without affecting axes or grid.

    silent?: MaybeAccessor<boolean>

    When true, suppresses all events triggered by this setOption call. Defaults to false.