Trilium Frontend API
    Preparing search index...

    Interface CanvasGradient

    The CanvasGradient interface represents an opaque object describing a gradient. It is returned by the methods CanvasRenderingContext2D.createLinearGradient(), CanvasRenderingContext2D.createConicGradient() or CanvasRenderingContext2D.createRadialGradient().

    MDN Reference

    interface CanvasGradient {
        addColorStop(offset: number, color: string): void;
    }
    Index

    Methods

    Methods

    • The CanvasGradient.addColorStop() method adds a new color stop, defined by an offset and a color, to a given canvas gradient.

      MDN Reference

      Parameters

      • offset: number
      • color: string

      Returns void