Skip to content

Releases: graphieros/vue-data-ui

v2.3.25

14 Oct 05:04
Compare
Choose a tag to compare

VueUiKpi: fix dataset reactivity issues

See issue #78

v2.3.24

13 Oct 14:50
Compare
Choose a tag to compare

VueUiCarouselTable

Overflowing rows are now hidden, to avoid seeing them under the thead when its background has transparency.

See issue #77

v2.3.23

12 Oct 14:33
Compare
Choose a tag to compare

Fix typo in .d.ts file

v2.3.22

09 Oct 16:14
Compare
Choose a tag to compare

This release improves the tooltip behavior when it reaches chart borders.

Additional config attributes are also added to customize the tooltip position. A centered position relative to the mouse position used to be imposed, I figured it would be nice to leave it to the users what they prefer.

{
  ...
  position: "left" | "center" | "right"; // default: "center" (previous behavior)
  offsetY: number;  // default: 24
}

For VueUiQuickChart, these config attributes are as follows:

{
  ...
  tooltipPosition,
  tooltipOffsetY
}

Docs are updated.
For chart makers you might need to click "Clear local storage for this chart" to reset your local storage with up to date config.

v2.3.21

09 Oct 06:01
Compare
Choose a tag to compare

VueUiGizmo: fix gauge proportion not exact

v2.3.20

08 Oct 12:35
Compare
Choose a tag to compare

This release adds a new mini component: VueUiGizmo

It comes for now in 2 types: "battery" or "gauge". More types may be added in the future.
Check it out here

v2.3.19

07 Oct 16:27
Compare
Choose a tag to compare

This release adds the #watermark slot to most charts.

image

Usage:

<VueUiDonut :config="config" :dataset="dataset">
  <template #watermark="{ isPrinting }">
    <div
      v-if="isPrinting"
      style="font-size: 100px; opacity: 0.1; transform: rotate(-10deg)"
    >
      WATERMARK
    </div>
  </template>
</VueUiDonut>

The slot exposes the isPrinting boolean, should you wish to display the watermark only on the downloaded pdf or png.
The list of components supporting this slot is available on the README

v2.3.17

06 Oct 22:11
Compare
Choose a tag to compare

VueUiGauge: fix title textAlign config option not applied

v2.3.16

06 Oct 21:27
Compare
Choose a tag to compare

Titles on charts were centered by default.
This release adds config options to all charts with titles to manage alignment:

textAlign: "left" | "center" | "right"; // default: "center"
paddingLeft: number; // default: 0
paddingRight: number; // default: 0

v2.3.14

05 Oct 04:21
Compare
Choose a tag to compare

VueUiSparkbar : fix bar overflow issue when value > 100 in percentage mode (issue)