Releases: graphieros/vue-data-ui
VueUiScatter gift wrap
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
v2.0.87 VueUiGauge improved gradient
Safari fixes
The useBlurOnHover config option was fixed so it also works in Safari, for the following components:
- VueUiDonut
- VueUiNestedDonuts
- VueUiWaffle
VueUiOnion improved gradient
Improved gradient implementation so it is usable on dark backgrounds too.
VueUiScatter bubble mode
This release adds the dataset value.weight option, to make a bubble chart.
VueUiIcon new icons
v2.0.82 VueUiIcon added icons
VueUiWaffle custom cells
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
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
Datapoints can be selected even when they stand under dataLabels.
VueUiQuadrant zoom functionality
This release adds the zoom functionality to the VueUiQuadrant component.
Clicking on a side will zoom on it, and display a minimap.