Skip to content

Releases: graphieros/vue-data-ui

VueUiXy minor fix

10 Mar 06:42
Compare
Choose a tag to compare

Fixed edge case

VueUiHeatmap bottom legend redesign

09 Mar 18:24
Compare
Choose a tag to compare

Redesigned VueUiHeatmap legend in bottom position with the same layout as right position.

VueUiScatter axis fix

09 Mar 09:51
Compare
Choose a tag to compare

This release fixes an issue with axis when all values were positive & > 0

VueUiXy bar labels

08 Mar 18:48
Compare
Choose a tag to compare

VueUiXy

Improved bar label options under config.bar.serieName, allowing the display of abbreviated serie names.

VueUiSparkline layout fixes

08 Mar 12:18
Compare
Choose a tag to compare

This release fixes layout issues.

Mini charts click events

08 Mar 06:17
Compare
Choose a tag to compare

This version adds click events to all mini charts:

VueUiSparkline
VueUiSparkbar
VueUiSparkStackbar
VueUiSparkHistogram

use the @selectDatapoint event on the component to retrieve the selected datapoint and index

<VueUiSparkbar
  :dataset="dataset"
  :config="config"
  @selectDatapoint="selectDatapoint"
/>

function selectDatapoint({ datapoint, index }) {
  console.log({ datapoint, index })
}

Headless custom tooltips

07 Mar 15:34
Compare
Choose a tag to compare

When using the customFormat tooltip config option, tooltips are headless.

Custom styles can be applied by targeting the following css class:

.vue-data-ui-custom-tooltip

Custom tooltips

07 Mar 08:54
Compare
Choose a tag to compare

All charts with tooltips now have a customFormat tooltip config option, allowing to customize the tooltip contents.
This config option is set to null by default, resulting in the default tooltip behavior.

customFormat: ({ seriesIndex, datapoint, series, config }) => {
// use the args to build your custom content
return <div>...your content here</div>
}
customFormat must return a string.

Custom toolltips

07 Mar 07:48
Compare
Choose a tag to compare

All charts with tooltips now have a customFormat tooltip config option, allowing to customize the tooltip contents.
This config option is set to null by default, resulting in the default tooltip behavior.

customFormat: ({ seriesIndex, datapoint, series, config }) => {
  // use the args to build your custom content
  return `<div>...your content here</div>`
}

customFormat must return a string.

VueUiQuadrant

04 Mar 07:26
Compare
Choose a tag to compare

VueUiQuadrant

  • added style.chart.layout.labels.plotLabels.showAsTag config option