-
Notifications
You must be signed in to change notification settings - Fork 105
Closed
Labels
good first issueGood for newcomersGood for newcomers🏛️ bug : layoutChart layout presents a defectChart layout presents a defect
Description
Discussed in #277
Originally posted by kudr9 November 25, 2025
<script setup lang="ts">
import { ref } from 'vue';
import { VueDataUi, type VueUiDonutEvolutionDatasetItem, type VueUiDonutEvolutionConfig } from 'vue-data-ui';
import 'vue-data-ui/style.css';
const dataset = ref<VueUiDonutEvolutionDatasetItem[]>([
{
name: 'Serie 1',
values: [55, 34, 21, 13, 8, 5, 8, 13, 21, 34, 55],
},
{
name: 'Serie 2',
values: [1, 12, 24, 32, 5, 8, 13, 21, 34, 55, 89],
},
{
name: 'Serie 3',
values: [16, 2, 3, 5, 28, 13, 21, 34, 55, 89, 134],
},
{
name: 'Serie 4',
values: [5, null, 5, 5, 5, 5],
},
]);
const config = ref<VueUiDonutEvolutionConfig>();
</script>
<template>
<VueDataUi
component="VueUiDonutEvolution"
:dataset="dataset"
:config="config"
/>
</template>
Hello! Thanks for the vue-data-ui. Its very beautiful and useful tool!
This code is from the app.vue. Why doesn't a modal window open when I click on a specific donut?
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers🏛️ bug : layoutChart layout presents a defectChart layout presents a defect