mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 13:11:58 +03:00
29 lines
595 B
Vue
29 lines
595 B
Vue
|
<script setup lang="ts">
|
||
|
import { ref } from 'vue'
|
||
|
|
||
|
import HeatmapVisualization from '@/components/visualizations/HeatmapVisualization.vue'
|
||
|
|
||
|
const data = ref<any>([
|
||
|
['A', 'B', 'C', 'D', 'A'],
|
||
|
['D', 'E', 'D', 'X', 'Z'],
|
||
|
[50, 25, 40, 20, 10],
|
||
|
])
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<Story
|
||
|
title="Heatmap"
|
||
|
group="visualizations"
|
||
|
:layout="{ type: 'grid', width: 400 }"
|
||
|
autoPropsDisabled
|
||
|
>
|
||
|
<div style="height: 322px">
|
||
|
<HeatmapVisualization :data="data" />
|
||
|
</div>
|
||
|
|
||
|
<template #controls>
|
||
|
<HstJson v-model="data" title="data" />
|
||
|
</template>
|
||
|
</Story>
|
||
|
</template>
|