Interface RendererFallbackEvent

Payload of the 'renderer:fallback' event: the chart has moved every pane from a GPU backend to canvas2d for the rest of the session, because the device's context was lost or turned out unusable. The frame that noticed was already painted through 2D by the backend itself, so nothing went blank; this is the host's cue to update anything that shows the renderer.

interface RendererFallbackEvent {
    from: RenderBackendKind;
    reason: RendererFallbackReason;
    to: "canvas2d";
}

Properties

Properties

to: "canvas2d"