• Modify Theme to remove any glow effects.

     // Example syntax
    const chart = lightningChart().ChartXY({
    theme: disableThemeEffects(Themes.cyberSpace)
    })

    Internally all this does is the following:

     return { ...theme, effect: undefined }
    

    If you don't want to disable effects entirely, but only on some components, see:

    Returns

    New theme object without glow effects.

    Parameters

    • theme: Theme

      Theme to modify.

    Returns Theme