github graphieros/vue-data-ui v2.5.8

latest releases: v3.1.3, v3.1.2, v3.1.1...
7 months ago

New component: VueUiCirclePack 🫧

  • Represent hierarchical data with an arrangement of packed circles

import { VueUiCirclePack } from "vue-data-ui";

const dataset = ref<VueUiCirclePackDatasetItem[]>([
  { name: 'Datapoint A', value: 200 },
  { name: 'Datapoint B', value: 155 },
  { name: 'Datapoint C', value: 132 },
  ...
])

const config = ref<VueUiCirclePackConfig>({
  /* Your config here */
});

Check out the docs to customize your config.

<VueUiCirclePack
  :dataset="dataset"
  :config="config"
/>

Or, using the universal component:

<VueDataUi
  component="VueUiCirclePack"
  :dataset="dataset"
  :config="config"
/>
image

Check out the docs

A chart builder is currently under construction.

Don't miss a new vue-data-ui release

NewReleases is sending notifications on new releases.