Skip to content

Releases: graphieros/vue-data-ui

v2.2.4

03 Jun 06:11
Compare
Choose a tag to compare

Components' data tables are now inside a dynamic accordion for smooth toggle transition.

v2.2.2

02 Jun 15:45
Compare
Choose a tag to compare

VueUiXy :

Added new showSerieName dataset option to display the serie name for line and plot types, either at the start or end of the dataset.

Here is a reminder of all dataset options :

{
  name: string; // recommended
  series: number[]; // required
  type: "bar" | "line" | "plot"; // default: "line"
  color?: string; // defaults to internal palette
  dashed?: boolean; // default: false
  useTag?: "start" | "end"; // default: "none"
  dataLabels?: boolean; // default: true
  useProgression?: boolean; // default: false
  useArea?: boolean; // default: false
  smooth?: boolean; // default: false
  shape?: "circle" | "triangle" | "square" | "diamond" | "pentagon" | "hexagon" | "star"; // default: "circle"
  scaleSteps?: number; // active when config.chart.grid.labels.yAxis.useIndividualScale is set to true
  scaleLabel?: string; // active when config.chart.grid.labels.yAxis.useIndividualScale is set to true
  autoScaling?: boolean; // active when config.chart.grid.labels.yAxis.useIndividualScale and config.chart.grid.labels.yAxis.stacked are set to true
  stackRatio?: number; // from 0 to 1, active when config.chart.grid.labels.yAxis.useIndividualScale and config.chart.grid.labels.yAxis.stacked are set to true
  showSerieName?: "start" | "end"; // default: "none"
}

2.2.1

02 Jun 08:30
Compare
Choose a tag to compare

For all components using a data table, added a close button on top of the table when it is open, to avoid having to use the user options menu to close it.

2.2.0

01 Jun 13:16
Compare
Choose a tag to compare

VueUiWaffle

  • Added optional animation on serie segregation

VueUiStripPlot

  • Added discrete animation on datapoint hover

VueUiDonutEvolution

  • Added discrete animation on datapoint selection zoom

v2.1.99

01 Jun 07:56
Compare
Choose a tag to compare

VueUiQuickChart :

  • Donut mode : removed legend wobbling when segregating datapoints
  • Line mode: improved line behavior when all datapoints are negative

v2.1.98

01 Jun 06:26
Compare
Choose a tag to compare

VueUiScatter

  • Added config.style.layout.plots.significance.useDistanceOpacity: boolean; // default: false config option, to display plots with an opacity computed from plot deviations.

v2.1.97

31 May 16:00
Compare
Choose a tag to compare

VueUiStripPlot

  • Now accepts negative values

VueUiVerticalBar

  • Now displays a warning when negative values are used

v2.1.96

31 May 06:06
Compare
Choose a tag to compare

VueUiXy & VueUiQuickChart

  • Fixed max scale when all datapoints are negative

VueUiDonutEvolution

  • Fixed donut not showing when only one datapoint is visible
  • Donuts sizing improvements

v2.1.95

30 May 15:21
Compare
Choose a tag to compare

Improved double range slider used in the following components:

  • VueUiQuickChart
  • VueUiXy
  • VueUiDonutEvolution
  • VueUiCandlestick

The double range slider handles can't overlap anymore.

An additional config option was added to control the color of the selected portion of the slider track:

VueUiQuickChart: config.zoomHighlightColor: string; // default: "#4A4A4A"
VueUiXy: config.chart.zoom.highlightColor: string; // default: "#4A4A4A"
VueUiDonutEvolution: config.style.chart.zoom.highlightColor: string; // default: "#4A4A4A"
VueUiCandlestick: config.style.zoom.highlightColor: string; // default: "#4A4A4A"

v2.1.92

27 May 12:23
Compare
Choose a tag to compare

VueUiXy

  • Removed the experimental useCanvas config attribute
  • Added config options for bar types, to style bar borders:
config.bar.border: {
  useSerieColor: boolean; // default: false
  strokeWidth: number; // default: 0; to not affect existing user configs
  stroke: string; // default: "#FFFFFF", same as default backgroundColor
}