Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/src/components/data-table/charts/lazy-chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export const LazyChart: React.FC<{
editor: true,
},
mode: "vega",
renderer: "canvas",
tooltip: tooltipHandler.call,
}}
/>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/datasources/column-preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ export function renderChart(chartSpec: string, theme: Theme) {
height: 100,
width: "container" as unknown as number,
actions: false,
renderer: "canvas",
}}
/>
</Suspense>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/editor/Output.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ export const OutputRenderer: React.FC<{
theme: theme === "dark" ? "dark" : "vox",
mode: "vega-lite",
tooltip: tooltipHandler.call,
renderer: "canvas",
}}
/>
</Suspense>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/tracing/tracing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ const TraceBlockBody: React.FC<{
actions: false,
// Using vega instead of vegaLite as some parts of the spec get interpreted as vega & will throw warnings
mode: "vega",
renderer: "canvas",
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ function chartOptions(theme: ResolvedTheme): VegaEmbedProps["options"] {
},
theme: theme === "dark" ? "dark" : undefined,
tooltip: tooltipHandler.call,
renderer: "canvas",
};
}

Expand Down
1 change: 1 addition & 0 deletions frontend/src/plugins/impl/vega/vega-component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ const LoadedVegaComponent = ({
actions: actions,
mode: "vega-lite",
tooltip: tooltipHandler.call,
renderer: "canvas",
},
onError: handleError,
onEmbed: handleNewView,
Expand Down
Loading