mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 06:32:30 +03:00
f2651d58e4
- Closes #7916 # Important Notes None
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>
|