Skip to content

Releases: graphieros/vue-data-ui

v2.1.79

22 May 11:56

Choose a tag to compare

VueUiStripPlot

  • Fixed wrong scale

v2.1.78

22 May 06:02

Choose a tag to compare

  1. 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)

  1. Added the 'copyLeft' icon to VueUiIcon

v2.1.77

21 May 06:23

Choose a tag to compare

This release improves the zoom component included in VueUIXy and VueUiCandlestick.

  1. 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

20 May 18:24

Choose a tag to compare

VueUiRadar

  • Fixed tooltip default embedded bar chart not showing when tooltip.customFormat is set to null (which is the default value).

v2.1.74

20 May 15:57

Choose a tag to compare

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

20 May 10:13

Choose a tag to compare

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

20 May 08:35

Choose a tag to compare

VueUiHeatmap

  • Fixed border radius config option not applied on bottom legend

VueUiQuadrant

  • Fixed @selectSide emit not applied

v2.1.67

19 May 15:37

Choose a tag to compare

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

19 May 07:35

Choose a tag to compare

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

18 May 08:48

Choose a tag to compare

This release fixes the tooltip.fontSize config option not applied on all components bearing tooltips.