Releases: graphieros/vue-data-ui
v2.1.79
VueUiStripPlot
- Fixed wrong scale
v2.1.78
- Improvements regarding xAxis time labels rotation config options for the following components:
-
VueUiXy: improved labels text-anchor when rotated -
VueUiQuickChart: improved labels text-anchor when rotated -
VueUiCandlestick: added config options to rotate xAxis time labels:
config.style.layout.grid.xAxis.dataLabels.rotation: number; (default : 0)
VueUiDonutEvolution: added config options to rotate xAxis time labels:
config.style.chart.layout.grid.xAxis.dataLabels.rotation: number; (default: 0)
config.style.chart.layout.grid.xAxis.datalabels.offsetY: number; (default: 0)
- Added the 'copyLeft' icon to
VueUiIcon
v2.1.77
This release improves the zoom component included in VueUIXy and VueUiCandlestick.
- Improved configuration
VueUiXy: config.chart.zoom
{
show: boolean; // default: true
color: string; // default: #CCCCCC
fontSize: number; // (new) default: 14
useResetSlot: boolean; // (new) default: false
}VueUiCandlestick: config.style.zoom
{
show: boolean; // default: true
color: string; // default: #CCCCCC
fontSize: number; // (new) default: 14
useResetSlot: boolean; // (new) default: false
}When using the zoom component, a button appears, allowing to refresh the state of the zoom.
Setting useResetSlot: true allows the use of the #reset-action slot, which exposes the reset function, for you to make your own custom refresh button:
<VueUiXy
:dataset="dataset"
:config="config"
>
<template #reset-action="{ reset }">
<button @click="reset()">RESET</button>
</template>
</VueUiXy>v2.1.75
VueUiRadar
- Fixed tooltip default embedded bar chart not showing when tooltip.customFormat is set to null (which is the default value).
v2.1.74
VueUiXy
- Fixed zoom.color config option not applied. (It is planned to make the zoom component better and more customizable in the future)
VueUiSparkStackbar
- Fixed bold config option on legend name not applied
v2.1.70
VueUiCandlestick
- Fixed Y axis scale steps config option not applied
VueUiGauge
- Fixed harmless console error related to pointy arrow path painted before data is computed when animation is enabled
v2.1.69
VueUiHeatmap
- Fixed border radius config option not applied on bottom legend
VueUiQuadrant
- Fixed
@selectSideemit not applied
v2.1.67
VueUiOnion :
- Fixed undefined showing in table in value column when prefix or suffix attributes are not present in datapoints
- Fixed tooltip showValue & showPercentage config options not applied
- Fixed wrong config reference on data labels offsetY
v2.1.66
VueUiXy
- Fixed issues when any datapoint's series contains a null value
- In stacked mode, when segregating series, the remaining series now redistribute the available height
VueUiRadar
- Hide tooltip's built in bar chart when tooltip.customFormat is enabled
- Fixed polygons still showing when segregating series, when useCssAnimation is set to false
v2.1.65
This release fixes the tooltip.fontSize config option not applied on all components bearing tooltips.