mirror of
https://github.com/enso-org/enso.git
synced 2024-11-10 12:48:25 +03:00
f2651d58e4
- Closes #7916 # Important Notes None
35 lines
739 B
Vue
35 lines
739 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
import HistogramVisualization from '@/components/visualizations/HistogramVisualization.vue'
|
|
|
|
const data = ref<any>({
|
|
axis: {
|
|
x: { label: 'x-axis label', scale: 'linear' },
|
|
y: { label: 'y-axis label', scale: 'logarithmic' },
|
|
},
|
|
color: 'rgb(1.0,0.0,0.0)',
|
|
bins: 10,
|
|
data: {
|
|
values: [0.1, 0.2, 0.1, 0.15, 0.7],
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="Histogram"
|
|
group="visualizations"
|
|
:layout="{ type: 'grid', width: 400 }"
|
|
autoPropsDisabled
|
|
>
|
|
<div style="height: 322px">
|
|
<HistogramVisualization :data="data" />
|
|
</div>
|
|
|
|
<template #controls>
|
|
<HstJson v-model="data" title="data" />
|
|
</template>
|
|
</Story>
|
|
</template>
|