lynxkite / web /src /NodeWithVisualization.svelte
darabos's picture
Switch to Svelte Query. It works!
5882a26
raw
history blame
468 Bytes
<script lang="ts">
import { type NodeProps } from '@xyflow/svelte';
import NodeWithParams from './NodeWithParams.svelte';
import { Chart } from 'svelte-echarts';
import { init } from 'echarts';
type $$Props = NodeProps;
export let data: $$Props['data'];
</script>
<NodeWithParams {...$$props}>
{#if data.view}
<Chart {init} options={data.view} initOptions={{renderer: 'canvas', width: 250, height: 250}}/>
{/if}
</NodeWithParams>
<style>
</style>