Skip to content

Releases: graphieros/vue-data-ui

.d.ts file minor fix

31 Mar 18:32

Choose a tag to compare

v.2.0.54

Minor fix in .d.ts file

VueUiKpi new component

31 Mar 17:05

Choose a tag to compare

Added new component

Optimized css

31 Mar 08:32

Choose a tag to compare

v.2.0.51

Optimized css

VueUiIcon

30 Mar 18:31

Choose a tag to compare

Minor fixes (removed non breaking console error)

VueUiGalaxy gradient

30 Mar 15:44

Choose a tag to compare

Added gradient config option in VueUiGalaxy

VueUiGalaxy

30 Mar 07:57

Choose a tag to compare

Added new component VueUiGalaxy

VueUiWaffle fixes

28 Mar 14:23

Choose a tag to compare

VueUiWaffle :

  • Fixed an error occurring when data labels are enabled and all series are segregated.

Error handling update

28 Mar 05:58

Choose a tag to compare

Any dataset missing element will trigger a console.warn instead of throwing an error.

Improved error handling

27 Mar 15:11

Choose a tag to compare

This version improves error handling, specifically pertaining to datasets props, and provide clear guidance in case of incorrect dataset input.

#legend slot

26 Mar 13:34

Choose a tag to compare

This release adds a #legend slot to all chart components except for:

  • VueUiWheel
  • VueUiTiremarks
  • VueUiHeatmap
  • VueUiRelationCircle
  • VueUiThermometer
  • VueUiSparkline
  • VueUiSparkbar
  • VueUiSparkStackbar
  • VueUiSparkgauge
  • VueUiSparkHistogram
  • VueUi3dBar

This feature allows for increased customization of chart legends.

The legend slot also works when using the VueDataUi universal component, if the component it wraps supports it.
It is recommended to set the show legend config attribute to false, to hide the default legend.

<VueUiDonut :config="config" :dataset="dataset">
  <template #legend="{ legend }">
    <div v-for="item in legend">
      {{ legend.name }}
    </div>
  </template>
</VueUiDonut>