Skip to content

Releases: graphieros/vue-data-ui

VueUiScatter gift wrap

16 Apr 05:39
Compare
Choose a tag to compare

VueUiScatter: The max area occupied by a dataset's plots is now visible through the optional config option

config.style.layout.plots.giftWrap

VueUiGauge improved gradient

15 Apr 15:33
Compare
Choose a tag to compare
v2.0.87

VueUiGauge improved gradient

Safari fixes

15 Apr 06:13
Compare
Choose a tag to compare

The useBlurOnHover config option was fixed so it also works in Safari, for the following components:

  • VueUiDonut
  • VueUiNestedDonuts
  • VueUiWaffle

VueUiOnion improved gradient

14 Apr 18:00
Compare
Choose a tag to compare

Improved gradient implementation so it is usable on dark backgrounds too.

VueUiScatter bubble mode

14 Apr 15:14
Compare
Choose a tag to compare

This release adds the dataset value.weight option, to make a bubble chart.

VueUiIcon new icons

14 Apr 07:37
Compare
Choose a tag to compare
v2.0.82

VueUiIcon added icons

VueUiWaffle custom cells

13 Apr 08:53
Compare
Choose a tag to compare

This release adds the #cell scoped slot allowing to custom cell contents:

The config attribute useCustomCells has to be set to true.

<VueUiWaffle
  :config="config"
  :dataset="dataset"
/>
  <template #cell="{ cell, isSelected }">
    <div>
      ... your custom content here (icon, image, etc)
    </div>
  </template>
</VueUiWaffle>

VueUi3dBar stack mode

10 Apr 05:32
Compare
Choose a tag to compare

VueUi3dBar was improved to display stacked bars when the series dataset option is used.
Stack mode is automatically enabled when the series attribute is present in the dataset:

const dataset = {
  series:  [
    {
      name: string,
      value: number,
      color?: string
      // Adding breakdown array will display donuts in the legend portion of the chart
      breakdown?: [
        {
          name: string,
          value: number
        },
        {...}
      ]
    },
    {...}
  ]
}

VueUiMolecule improvements

08 Apr 18:07
Compare
Choose a tag to compare

Datapoints can be selected even when they stand under dataLabels.

VueUiQuadrant zoom functionality

08 Apr 16:41
Compare
Choose a tag to compare

This release adds the zoom functionality to the VueUiQuadrant component.
Clicking on a side will zoom on it, and display a minimap.