Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vue-data-ui

graphieros12.9kMIT3.2.6TypeScript support: included

A user-empowering data visualization Vue 3 components library for eloquent data storytelling

3d bar, Vue, accelerometer, age pyramid, annotator, candlestick, chart, cluster, dashboard, data storytelling, data visualization, donut evolution, donut, dumbbell, funnel, galaxy, gauge, graph, heatmap, kpi, line, molecule, mood radar, quadrant, quick chart, radar, rating, relationship circle, rings, scatter, screenshot, skeleton, smiley, sparkbar, sparkline, stackbar, table heatmap, table, thermometer, tiremarks, tree, treemap, waffle, wheel, wordcloud, circle packing

readme


vue-data-ui

npm Static Badge GitHub issues License MadeWithVueJs.com shield npm

Interactive documentation

A user-empowering data visualization Vue components library for eloquent data storytelling.

Available components

Charts

Mini charts

3d

Tables

Rating

Maps

Utilities

Installation

npm i vue-data-ui

You can declare components globally in your main.js:

import { createApp } from "vue";
import App from "./App.vue";
// Include the css;
import "vue-data-ui/style.css";

// You can declare Vue Data UI components globally
import { VueUiRadar } from "vue-data-ui";

const app = createApp(App);

app.component("VueUiRadar", VueUiRadar);
app.mount("#app");

Or you can import just what you need in your files:

<script setup>import {(VueUiRadar, VueUiXy)} from "vue-data-ui";</script>

You can also use the "VueDataUi" universal component, just specifying which component you are using. You can of course use the slots provided, if the target component has them.

<script setup>
import { ref } from "vue";
import { VueDataUi } from "vue-data-ui";
// Include the css;
import "vue-data-ui/style.css";

const config = ref({...});
const dataset = ref([...]);

</script>

<template>

  <VueDataUi
    component="VueUiXy"
    :config="config"
    :dataset="dataset"
  />

</template>

Note that the following utility components are not supported by the universal VueDataUi component and must be imported individually:

  • Arrow
  • VueUiIcon
  • VueUiPattern

Typescript

Types are available in the 'vue-data-ui.d.ts' file under the types directory of the package.

Vue Data UI version2 -> version3 migration

Vue Data UI v3 does not contain breaking changes. However, some charts have their padding configs modified, which can lead to excessive padding with a v2 config.

Version 3 features

  • config.loading (default: false) toggle loading state manually, to display a beautiful skeleton loader which uses the same chart component and shares layout features derived from your config. This skeleton loader is also triggered automatically if the provided dataset is undefined.

  • config.debug (default: false) set to true to show warning messages during development, turn off for production.

  • smart label resizing and auto-rotating features

  • more charts support responsive mode

  • config event callbacks

Nuxt

This repo contains a boilerplate implementation of the vue-data-ui package in Nuxt

Customizable tooltips

Charts with tooltips have a config option to customize tooltip contents:


customFormat: ({ seriesIndex, datapoint, series, config }) => {
  return `<div>${ ... }</div>`;
}

Data formatting

Data labels can be customized using the formatter config attribute (since v2.3.29 on all chart components):

// the formatter attribute is generally placed under label or dataLabel config attribute objects

const config = ref({
  formatter: ({ value, config }) => {
    return `formatted ${value}`;
  }
})

Slots

#svg slot

Most Vue Data UI chart components include a #svg slot you can use to introduce customized svg elements (shapes, text, etc).

<VueUiXy :dataset="dataset" :config="config">
  <template #svg="{ svg }">
    <foreignObject x="100" y="0" height="100" width="150">
      <div>This is a custom caption</div>
    </foreignObject>
  </template>
</VueUiXy>

The svg slot also works when using the VueDataUi universal component, if the component it wraps supports it.

#legend slot (since v.2.0.41)

All charts expose a #legend slot except for:

  • VueUiCirclePack
  • VueUiDumbbell
  • VueUiFlow
  • VueUiFunnel
  • VueUiHeatmap
  • VueUiRelationCircle
  • VueUiSparkHistogram
  • VueUiSparkStackbar
  • VueUiSparkbar
  • VueUiSparkgauge
  • VueUiSparkline
  • VueUiThermometer
  • VueUiTimer
  • VueUiTiremarks
  • VueUiWheel

The legend slot also works when using the VueDataUi universal component, if the component it wraps supports it. It is recommended to set the show legend config attribute to false, to hide the default legend.

<VueUiDonut :config="config" :dataset="dataset">
  <template #legend="{ legend }">
    <div v-for="item in legend">{{ legend.name }}</div>
  </template>
</VueUiDonut>

Tooltip #tooltip-before & #tooltip-after slots

Customize tooltip contents with #tooltip-before and #tooltip-after slots. It is that easy to include an image, another chart or any other content into your tooltips. It's an alternative to the config option tooltip.customFormat, in case richer tooltip content is needed.

Both slots expose the following object:

{
  datapoint,
  seriesIndex,
  series,
  config,
}

The following charts bear these slots:

  • VueUiAgePyramid
  • VueUiCandlestick
  • VueUiDonut
  • VueUiGalaxy
  • VueUiHeatmap
  • VueUiHistoryPlot
  • VueUiMolecule
  • VueUiNestedDonuts
  • VueUiOnion
  • VueUiParallelCoordinatePlot
  • VueUiQuadrant
  • VueUiQuickChart
  • VueUiRadar
  • VueUiRings
  • VueUiScatter
  • VueUiSparkStackbar
  • VueUiStackbar
  • VueUiTreemap
  • VueUiHorizontalBar
  • VueUiWordCloud
  • VueUiXy *
  • VueUiXyCanvas
  • VueUiwaffle
  • VueUiWorld

* VueUiXy slots specifically expose the following additional attributes:


{
  ...,
  bars,
  lines,
  plots
}
<VueUiDonut :config="config" :dataset="dataset">
  <template #tooltip-before={ datapoint, seriesIndex, dataset, config }">
    <div>
      This content shows first
    </div>
  </template>
  <template #tooltip-after={ datapoint, seriesIndex, dataset, config }">
    <div>
      This content shows last
    </div>
  </template>
</VueUiDonut>

The #tooltip-before & #tooltip-after slots also works when using the VueDataUi universal component, if the component it wraps supports them.

Add a watermark using the #watermark slot

You can use the #watermark slot to include any watermark content with your own styling. This slot exposes the isPrinting boolean you can use to display the watermark only when producing a pdf or an image.

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

Customization of the zoom reset button with the #reset-action slot

Available for the following components:

  • VueUiQuickChart (for line & bar types only)
  • VueUiXy
  • VueUiDonutEvolution
  • VueUiCandlestick
  • VueUiWordCloud

The config option zoom.useResetSlot must be set to true to use the slot.

<VueUiXy :config="config" :dataset="dataset">
  <template #reset-action="{ reset }">
    <button @click="reset()">RESET ZOOM</button>
  </template>
</VueUiXy>

Config

If for some reason you can't access the documentation website and need to get the default config object for a component:

import { getVueDataUiConfig } from "vue-data-ui";

const defaultConfigXy = getVueDataUiConfig("vue_ui_xy");

Themes (since v2.2.9)

All charts are set by default without a theme, and use the default color palette.

5 themes are available for all charts:

  • zen
  • hack
  • concrete
  • celebration (v2.4.70+)
  • celebrationNight (v2.4.70+)

Any color provided in dataset props will override the colors used by the theme for datapoints.

To use a theme, set the theme attribute of the config prop, for example:

const donutConfig = ref({
  theme: 'zen',
  ...
})

Available components : details

Type definitions are available in the vue-data-ui.d.ts file in the dist/types directory.

Universal component

Name dataset type config type emits / exposed methods slots custom tooltip themes
VueDataUi (depends on component) (depends on component) (depends on component) (depends on component) (depends on component) (depends on component)

Quick chart

From the dataset you pass into the props, this component will produce the most adapted chart (either a line, bar or donut chart)

Name dataset type config type emits / exposed methods slots custom tooltip themes
VueUiQuickChart VueUiQuickChartDataset VueUiQuickChartConfig @selectDatapoint, @selectLegend, generatePdf, generateImage, toggleTooltip #legend, #tooltip-before, #tooltip-after, #reset-action, #watermark, #chart-background

Mini charts

Name dataset type config type emits / exposed methods slots custom tooltip themes
VueUiSparkline VueUiSparklineDatasetItem[] VueUiSparklineConfig @selectDatapoint #svg, #before, #chart-background, #tooltip
VueUiSparkbar VueUiSparkbarDatasetItem[] VueUiSparkbarConfig @selectDatapoint #data-label, #title
VueUiSparkStackbar VueUiSparkStackbarDatasetItem[] VueUiSparkStackbarConfig @selectDatapoint #tooltip-before, #tooltip-after
VueUiSparkHistogram VueUiSparkHistogramDatasetItem[] VueUiSparkHistogramConfig @selectDatapoint #chart-background
VueUiSparkGauge VueUiSparkGaugeDataset VueUiSparkGaugeConfig #chart-background
VueUiSparkTrend number[] VueUiSparkTrendConfig #chart-background
VueUiGizmo VueUiGizmoDataset VueUiGizmoConfig
VueUiBullet VueUiBulletDataset VueUiBulletConfig generatePdf, generateImg, getData, getImage #svg, #legend, #watermark, #chart-background

Charts

Name dataset type config type emits / exposed methods slots custom tooltip themes
VueUiAgePyramid Array<Array<string / number>> VueUiSparklineConfig generatePdf, generateImage, generateCsv, toggleTable, toggleTooltip, getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiCandlestick Array<Array<string / number>> VueUiCandlestickConfig generatePdf, generateImage, generateCsv, toggleTable, toggleTooltip, getImage #svg, #legend, #tooltip-before, #tooltip-after, #reset-action, #watermark, #chart-background
VueUiChestnut VueUiChestnutDatasetRoot[] VueUiChestnutConfig @selectRoot, @selectBranch, @selectNut, getData, generatePdf, generateCsv, generateImage, toggleTable, getImage #svg, #legend, #watermark, #chart-background
VueUiChord VueUiChordDataset VueUiChordConfig @selectLegend, @selectGroup, @selectRibbon, getData, generatePdf, generateCsv, generateImage, toggleTable, getImage #svg, #legend, #watermark, #chart-background, #pattern
VueUiCirclePack VueUiCirclePackDatasetItem[] VueUiCirclePackConfig @selectDatapoint, getData, generatePdf, generateImage, generateCsv, toggleTable, getImage #svg, #legend, #watermark, #chart-background , #pattern, #zoom-label, #data-label
VueUiDonutEvolution VueUiDonutEvolutionDatasetItem[] VueUiDonutEvolutionConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable , getImage #svg, #legend, #reset-action, #watermark, #chart-background
VueUiDonut VueUiDonutDatasetItem[] VueUiDonutConfig @selectDatapoint, @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip, getImage #svg, #legend, #dataLabel, #tooltip-before, #tooltip-after, #plot-comment, #watermark, #chart-background, #pattern
VueUiDumbbell VueUiDumbbellDataset[] VueUiDumbbellConfig getData, generatePdf, generateCsv, generateImage, toggleTable, getImage #svg, #legend, #watermark, #chart-background
VueUiFlow VueUiFlowDatasetItem[] VueUiFlowConfig getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip, getImage #svg, #legend, #watermark, #chart-background, #tooltip-before, #tooltip-after,
VueUiFunnel VueUiFunnelDatasetItem[] VueUiFunnelConfig getData, generatePdf, generateCsv, generateImage, toggleTable, getImage #svg, #watermark, #chart-background
VueUiGalaxy VueUiGalaxyDatasetItem[] VueUiGalaxyConfig @selectDatapoint, @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip , getImage #svg, #legend,#tooltip-before, #tooltip-after, #chart-background
VueUiGauge VueUiGaugeDataset VueUiGaugeConfig generatePdf, generateImage, getImage #svg, #legend, #watermark, #chart-background, #pattern
VueUiHeatmap VueUiHeatmapDatasetItem[] VueUiHeatmapConfig @selectDatapoint, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip, getImage #svg, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiHistoryPlot VueUiHistoryPlotDatasetItem[] VueUiHistoryPlotConfig @selectDatapoint, @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip, getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiMolecule VueUiMoleculeDatasetNode[] VueUiMoleculeConfig @selectNode, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip, getImage #node, #svg, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiMoodRadar VueUiMoodRadarDataset VueUiMoodRadarConfig getData, generatePdf, generateCsv, generateImage, toggleTable , getImage #svg, #legend, #watermark, #chart-background
VueUiNestedDonuts VueUiNestedDonutsDatasetItem[] VueUiNestedDonutsConfig @selectDatapoint, @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiOnion VueUiOnionDatasetItem[] VueUiOnionConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip, getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiParallelCoordinatePlot VueUiParallelCoordinatePlotDatasetItem[] VueUiParallelCoordinatePlotConfig @selectLegend, @selectDatapoint, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip, getImage #svg, #legend, #tooltip-before, #tooltip-after, #plot-comment, #watermark, #chart-background
VueUiQuadrant VueUiQuadrantDatasetItem[] VueUiQuadrantConfig @selectLegend, @selectPlot, @selectSide, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip, getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiRadar VueUiRadarDataset VueUiRadarConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiRidgeline VueUiRidgelineDatasetItem[] VueUiRidgelineConfig @selectLegend, @selectX, @selectDatapoint, getData, generatePdf, generateCsv, generateImage, toggleTable , getImage #svg, #legend, #time-label,#watermark, #chart-background, #pattern
VueUiRings VueUiRingsDatasetItem[] VueUiRingsConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background, #pattern
VueUiScatter VueUiScatterDatasetItem[] VueUiScatterConfig getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiStackbar VueUiStackbarDatasetItem[] VueUiStackbarConfig @selectLegend, @selectDatapoint, @selectTimeLabel, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip , getImage #svg, #legend, #time-label, #tooltip-before, #tooltip-after, #reset-action, #watermark, #chart-background, #pattern
VueUiStripPlot VueUiStripPlotDataset[] VueUiStripPlotConfig @selectDatapoint, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background
VueUiThermometer VueUiThermometerDataset VueUiThermometerConfig generatePdf, generateImage , getImage #svg, #watermark, #chart-background
VueUiTiremarks VueUiTiremarksDataset VueUiTiremarksConfig generatePdf, generateImage , getImage #svg, #legend, #watermark, #chart-background
VueUiTreemap VueUiTreemapDatasetItem[] VueUiTreemapConfig @selectLegend, @selectDatapoint, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip , getImage #svg, #rect, #legend, #tooltip-before, #tooltip-after, #watermark, #breadcrumb-label, #breadcrumb-arrow
VueUiHorizontalBar VueUiHorizontalBarDatasetItem[] VueUiWheelConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleSort, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #chart-background, #pattern
VueUiWaffle VueUiWaffleDatasetItem[] VueUiWaffleConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleTooltip , getImage #svg, #legend, #tooltip-before, #tooltip-after, #watermark, #pattern
VueUiWheel VueUiWheelDataset VueUiWheelConfig generatePdf, generateImage , getImage #svg, #watermark, #chart-background
VueUiWordCloud VueUiWordCloudDatasetItem[] / string VueUiWordCloudConfig getData, generatePdf, generateImage, generateCsv, toggleTooltip , getImage #svg, #reset-action, #watermark, #tooltip-before, #tooltip-after, #chart-background
VueUiXyCanvas VueUiXyCanvasDatasetItem[] VueUiXyCanvasConfig @selectLegend, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleStack, toggleTooltip , getImage #legend, #tooltip-before, #tooltip-after, #reset-action, #watermark
VueUiXy VueUiXyDatasetItem[] VueUiXyConfig @selectLegend, @selectX, @selectTimeLabel, getData, generatePdf, generateCsv, generateImage, toggleTable, toggleLabels, toggleStack, toggleTooltip , getImage #svg, #legend, #time-label, #tooltip-before, #tooltip-after, #reset-action, #plot-comment,#watermark, #chart-background, #pattern, #area-gradient, #bar-gradient

3D charts

Name dataset type config type emits / exposed methods slots custom tooltip themes
VueUi3dBar VueUi3dBarDataset VueUi3dBarConfig generatePdf, generateImage, toggleTable, getImage #svg, #watermark, #chart-background

Maps

Name dataset type config type emits / exposed methods slots custom tooltip themes
VueUiWorld VueUiWorldDataset VueUiWorldConfig getData, generatePdf, generateImage, toggleTable, toggleTooltip, toggleAnnotator, getImage #svg, #watermark, #pattern, #chart-background

Data tables

Name dataset type config type emits / exposed methods slots themes
VueUiTable VueUiTableDataset VueUiTableConfig
VueUiTableHeatmap VueUiTableHeatmapDatasetItem[] VueUiTableHeatmapConfig generatePdf, generateCsv, generateImage #caption, #rowTitle, #cell, #sum, #average, #median
VueUiTableSparkline VueUiTableSparklineDatasetItem[] VueUiTableSparklineConfig generatePdf, generateCsv, generateImage
VueUiCarouselTable VueUiCarouselTableDataset VueUiCarouselTableConfig generatePdf, generateImage, generateCsv, toggleAnimation, pauseAnimation, resumeAnimation #caption, #th, #td

Rating

Name dataset type config type emits / exposed methods slots
VueUiRating VueUiRatingDataset VueUiRatingConfig @rate, getData,toggleReadonly #layer-under, #layer-above
VueUiSmiley VueUiRatingDataset VueUiSmileyConfig @rate, getData,toggleReadonly

Utilities

Name dataset type config type emits / exposed methods slots
VueUiAccordion VueUiAccordionConfig #arrow, #title, #content
VueUiAnnotator VueUiAnnotatorDataset VueUiAnnotatorConfig @toggleOpenState, @saveAnnotations
VueUiCursor VueUiCursorConfig
VueUiDashboard VueUiDashboardElement[] VueUiDashboardConfig @change #content, #top, #bottom
VueUiDigits number VueUiDigitsConfig
VueUiKpi number VueUiKpiConfig #title, #value, #comment-before, #comment-after
VueUiMiniLoader VueUiMiniLoaderConfig
VueUiSkeleton VueUiSkeletonConfig
VueUiTimer VueUiTimerConfig @start, @pause, @reset, @restart, @lap #time, #controls, #laps, #chart-background
VueUiIcon see below

Icons

Tailor made icons are available through the VueUiIcon component:

<VueUiIcon name="arrowRight" :size="24" stroke="#6376DD" />

All names of available icons are available in the vue-data-ui.d.ts file under the VueUiIconName type.

User options

User options menu is accessible in the burger menu located on the top right of charts, and visible by default. To hide user options menu, set config.userOptions.show to false:

const config = ref({
  userOptions: {
    show: false
  },
  ...
})

User options menu can be set to appear only when hovering the component:

const config = ref({
  userOptions: {
    show: true,
    showOnChartHover: true, // Default: false
    keepStateOnChartLeave: true, // Set to false to always close the menu when hovering out of the chart
  },
});

Predefined actions in user options menu depend on the type of chart. Some charts have more or less actions available. Action buttons contain an predefined icons by default.

To hide a given action, set the userOption.buttons, for example:

const config = ref({
  userOptions: {
    show: true,
    buttons: {
      pdf: false,
      fullscreen: false,
      // all other actions will be visible by default (list of all actions below)
    },
  },
});

You can use slots to override the content of action buttons. What happens when the button is clicked is taken care of by the component, except for the optionFullscreen slot.

<VueUiDonut :config="config" :dataset="dataset">
  <template #optionPdf> GENERATE PDF </template>

  <!-- This is the only action where scoped content is provided -->
  <template template #optionFullscreen="{ isFullscreen, toggleFullscreen }">
    <div @click="toggleFullscreen(isFullscreen ? 'out' : 'in')">
      TOGGLE FULLSCREEN
    </div>
  </template>
</VueUiDonut>

You can pass a callback trhough the config, for each button, to override the default behavior:

const config = {
  userOptions: {
    callbacks: {
      pdf: ({ chartElement, imageUri, base64 }) => {
        console.log(chartElement);
      },
      img: ({ chartElement, imageUri, base64 }) => {
        console.log(base64);
      },
      csv: (csvStr: string) => {
        console.log(csvStr);
      },
      // the other atributes also have the same names as the buttons
    },
  },
};

User options actions available per chart:

Chart name User options actions slot names
VueUi3dBar optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiAgePyramid optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiBullet optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiCandlestick optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiCarouselTable optionPdf, optionImg, optionCsv, optionAnimation, optionFullscreen
VueUiChestnut optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiChord optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiCirclePack optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiDonut optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiDonutEvolution optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiDumbbell optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiFlow optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiFunnel optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiGalaxy optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiGauge optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiHeatmap optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiHistoryPlot optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiMolecule optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiMoodRadar optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiNestedDonuts optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiOnion optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiParallelCoordinatePlot optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiQuadrant optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiQuickChart optionTooltip, optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiRadar optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiRelationCircle optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiRidgeline optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiRings optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiScatter optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiSparkHistogram (no user options menu)
VueUiSparkStackbar (no user options menu)
VueUiSparkTrend (no user options menu)
VueUiSparkbar (no user options menu)
VueUiSparkgauge (no user options menu)
VueUiSparkline (no user options menu)
VueUiStackbar optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiStripPlot optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionAnnotator
VueUiTableHeatmap optionPdf, optionImg, optionCsv, optionFullscreen
VueUiTableSparkline optionPdf, optionImg, optionCsv, optionFullscreen
VueUiThermometer optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiTiremarks optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiTreemap optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiHorizontalBar optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionSort, optionFullscreen, optionAnnotator
VueUiWaffle optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiWheel optionPdf, optionImg, optionFullscreen, optionAnnotator
VueUiWordCloud optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiWorld optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionFullscreen, optionAnnotator
VueUiXy optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionStack, optionAnnotator
VueUiXyCanvas optionTooltip, optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionStack, optionAnnotator

User options menu icon can be customized using the #menuIcon slot:

<template #menuIcon="{ isOpen, color }">
  <div>{{ isOpen ? 'close' : 'open' }}</div>
</template>

Custom palette

It is possible to provide a custom palette in the config prop through config.customPalette (string[]) for the following components:

  • VueUi3dBar
  • VueUiChestnut
  • VueUiChord
  • VueUiCirclePack
  • VueUiDonut
  • VueUiDonutEvolution
  • VueUiFlow
  • VueUiGalaxy
  • VueUiGauge
  • VueUiHistoryPlot
  • VueUiMolecule
  • VueUiNestedDonuts
  • VueUiOnion
  • VueUiParallelCoordinatePlot
  • VueUiQuadrant
  • VueUiQuickChart
  • VueUiRadar
  • VueUiRelationCircle
  • VueUiRidgeline
  • VueUiRings
  • VueUiScatter
  • VueUiSparkStackbar
  • VueUiSparkbar
  • VueUiStackbar
  • VueUiStripPlot
  • VueUiTableSparkline
  • VueUiThermometer
  • VueUiTreemap
  • VueUiHorizontalBar
  • VueUiWaffle
  • VueUiWordCloud
  • VueUiWorld
  • VueUiXy
  • VueUiXyCanvas

If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette. Accepted color formats: HEX, RGB, HSL, named colors.

Responsive charts

By default, all charts will scale to the width of their container. However the folowing charts can be made fully responsive, making them better to use in resizable containers:

Component Responsive feature implemented
VueUi3dBar
VueUiAgePyramid
VueUiAgePyramid
VueUiBullet
VueUiCarouselTable -
VueUiChestnut -
VueUiChord
VueUiCirclePack ✅ (built-in)
VueUiDonut
VueUiDonutEvolution
VueUiDumbbell
VueUiFlow
VueUiFunnel
VueUiGalaxy
VueUiGauge
VueUiHeatmap
VueUiHistoryPlot
VueUiMolecule -
VueUiMoodRadar
VueUiNestedDonuts
VueUiOnion
VueUiParallelCoordinatePlot
VueUiQuadrant
VueUiQuickChart
VueUiRadar
VueUiRelationCircle
VueUiRidgeline
VueUiRings
VueUiScatter
VueUiSparkHistogram
VueUiSparkStackbar -
VueUiSparkTrend
VueUiSparkbar -
VueUiSparkgauge -
VueUiSparkline
VueUiStackbar
VueUiStripPlot
VueUiTableHeatmap -
VueUiTableSparkline -
VueUiThermometer
VueUiTimer
VueUiTiremarks
VueUiTreemap
VueUiHorizontalBar
VueUiWaffle
VueUiWheel
VueUiWordCloud
VueUiWorld -
VueUiXy
VueUiXyCanvas

To activate responsiveness, set the config.responsive attribute to true:

const config = ref({
  responsive: true,
  // rest of your config
});

Important: when using the responsive feature, charts must be placed inside a container with fixed dimensions. Avoid setting a 100% height to this container, as it will result in the chart growing infinitely.

Big data optimization (since v2.4.11)

Very large datasets (> 5k or > 10k datapoints) will cause the browsers rendering engines to slow down, caused by too many SVG DOM elements to render. The following charts use the LTTB algorithm (Largest-Triangle-Three-Bucket) beyond a certain threshold to downsample the rendered dataset while preserving its shape. These components are the most susceptible to be used with very large datasets:

Component Default Threshold Remark
VueUiXy 1095
VueUiXyCanvas 10000 Since this chart uses canvas, threhsold can be set higher
VueUiQuadrant 1095
VueUiScatter 1095
VueUiSparkline 1095
VueUiSparkTrend 1095

The downsample threshold for each component can be set in the config prop passed to components:

const config = ref({
  downsample: {
    threshold: 500,
  },
  ...// rest of your config
})

Chart custom background (since v2.4.59)

A #chart-background slot is available on most charts to customize their background, to display a gradient, an image, etc. The content placed inside this slot has pointer-events set to none, so it does not interfere with the components' interactivity.

<VueUiXy :config="config" :dataset="dataset">
  <template #chart-background>
    <div
      style="width: 100%; height: 100%; background: radial-gradient(at top left, red, white)"
    />
  </template>
</VueUiXy>

The following components do not support this slot, because it would not make sense:

  • VueUiCarouselTable
  • VueUiGizmo
  • VueUiIcon
  • VueUiKpi
  • VueUiRating
  • VueUiSmiley
  • VueUiSparkStackbar
  • VueUiSparkbar
  • VueUiTableHeatmap
  • VueUiTableSparkline
  • VueUiTreemap
  • VueUiWaffle
  • VueUiXyCanvas

Pattern slot (v2.4.67+)

A #pattern slot is available on some components to apply custom patterns on datapoints for further customization. The slot exposes the seriesIndex, and a patternId which must be used on the pattern element to be recognized. A pattern element must be used inside this slot. It will be injected inside a defs element of the component.

<VueUiDonut :config="config" :dataset="dataset">
  <template #pattern="{ seriesIndex, patternId }">
    <!-- Apply a patattern on the first datapoint only -->
    <pattern
      v-if="seriesIndex === 0"
      :id="patternId"
      viewBox="0,0,10,10"
      width="10%"
      height="10%"
    >
      <polygon points="0,0 2,5 0,10 5,8 10,10 8,5 10,0 5,2" />
    </pattern>
  </template>
</VueUiDonut>

The #pattern slot is available on the following components:

  • VueUiChord
  • VueUiCirclePack
  • VueUiDonut
  • VueUiGauge
  • VueUiRidgeline
  • VueUiRings
  • VueUiStackbar
  • VueUiHorizontalBar
  • VueUiWaffle
  • VueUiWorld
  • VueUiXy

A set of 12 readymade patterns are available through the VueUiPattern component:

import { VueUiPattern } from "vue-data-ui";
<VueUiDonut :dataset="dataset" :config="config">
  <template #pattern="{ seriesIndex, patternId }">
    <VueUiPattern :id="patternId" name="bubbles" v-if="seriesIndex === 0" />
    <VueUiPattern :id="patternId" name="squares" v-if="seriesIndex === 1" />
  </template>
</VueUiDonut>

VueUiPattern accepts the following props:

  • id: string, required. Pass the patternId provided by the #pattern slot
  • name: string, required. The name of the pattern to use
  • fill: string, optional. The backgroundColor of the pattern. Transparent by default to show the datapoint base color
  • stroke: string, optional. Default: #2D353C
  • strokeWidth: number, optional. Default: 1
  • scale: number, optional. Default: 1

List of available patterns:

pattern name
bubbles
flooring
grid
hexagon-diamond
hexagon-flooring
hexagon-grid
maze
redrum
scales
squares
wave
zigzag

Utility functions

A set of uility functions is available:

import {
  abbreviate,
  darkenColor,
  lightenColor,
  shiftColorHue,
  createTSpans,
  getCumulativeAverage,
  getCumulativeMedian,
} from "vue-data-ui";

abreviate

import { abbreviate } from "vue-data-ui";

const text = "lorem ipsum dolor sit amet";
const abbreviated = abbreviate({
  source: text,
  length: 5,
}); // Result: LIDSA

darkenColor

import { darkenColor } from "vue-data-ui";

const color = "#FF0000";
const darkened = darkenColor(color, 0.5); // Result: #800000ff

lightenColor

import { lightenColor } from "vue-data-ui";

const color = "#FF0000";
const lightened = lightenColor(color, 0.5); // Result: #ff8080ff

shiftColorHue

import { shiftColorHue } from "vue-data-ui";

// Color format can be HEX (with or without alpha channel), RGB, RGBA, or named color
const color = "#FF0000";
const shifted = shiftColorHue(color, 0.1); // Result: #ff9900ff

createTSpans

import { createTSpans } from "vue-data-ui";

const textContent = createTSpans({
  content: "This is an example of multiline text",
  fontSize: 16,
  fill: "#1A1A1A",
  maxWords: 3,
  x: 10,
  y: 20,
});
<!-- The output must be used inside a svg text element with `v-html`, for example in a #data-label slot, or in your own svg -->

<text
  :x="10"
  :y="20"
  fill="#1A1A1A"
  :font-size="16"
  text-anchor="middle"
  v-html="textContent"
/>

getCumulativeAverage

import { getCumulativeAverage } from "vue-data-ui";

// simple usage
const arr = [0, 1, 2, 3, 4];
const cumulativeAvg = getCumulativeAverage({ values: arr });

// Ignore invalid values entirely
const arrWithInvalid = [1, null, 2, Infinity, NaN, undefined];
const cumulativeAvgNoInvalid = getCumulativeAverage({
  values: arrWithInvalid,
  config: {
    keepInvalid: false,
  },
});

// Convert invalid values to zero
const cumulativeAvgZeroed = getCumulativeAverage({
  values: arrWithInvalid,
  config: {
    convertInvalidToZero: true,
  },
});

getCumulativeMedian

import { getCumulativeMedian } from "vue-data-ui";

// simple usage
const arr = [0, 1, 2, 3, 4];
const cumulativeMed = getCumulativeMedian({ values: arr });

// Ignore invalid values entirely
const arrWithInvalid = [1, null, 2, Infinity, NaN, undefined];
const cumulativeMedNoInvalid = getCumulativeMedian({
  values: arrWithInvalid,
  config: {
    keepInvalid: false,
  },
});

// Convert invalid values to zero
const cumulativeMedZeroed = getCumulativeMedian({
  values: arrWithInvalid,
  config: {
    convertInvalidToZero: true,
  },
});

mergeConfigs

import { mergeConfigs, getVueDataUiConfig } from "vue-data-ui";
const defaultConfig = getVueDataUiConfig("vue_ui_xy");

// Create a full config with user overrides
const merged = mergeConfigs({
  defaultConfig,
  userConfig: {
    chart: {
      backgroundColor: "#FF0000",
    },
  },
});

Multiline data labels

Some components will display labels on mutliple lines when the provided text contains a line break. (example: "I contain\na line break"). Below is a table of the places where such line breaks can be used:

Component Label displayed Where to use line breaks
VueUiXy Time labels (x axis) config.chart.grid.labels.xAxisLabels.values
VueUiDonutEvolution Time labels (x axis) config.style.chart.layout.grid.xAxis.dataLabels.values
VueUiHistoryPlot Plot labels dataset names
VueUiParallelCoordinatePlot Axis labels config.style.chart.yAxis.labels.axisNames
VueUiQuadrant Plot labels dataset names

changelog

Changelog

All notable changes to this project will be documented in this file.

Thu Feb 20 10:35:03 2025 +0100 - graphieros

Commit: 5a7a44c

  • v2.6.4

Thu Feb 20 09:29:50 2025 +0100 - graphieros

Commit: 618e289

  • Tests - Add VueUiXyCanvas component test

Thu Feb 20 09:13:33 2025 +0100 - graphieros

Commit: 8d5e186

  • Tests - Add VueUiWordCloud component test

Thu Feb 20 09:02:09 2025 +0100 - graphieros

Commit: f99d7c0

  • Tests - Add VueUiWheel component test

Thu Feb 20 08:48:52 2025 +0100 - graphieros

Commit: 2385f10

  • Tests - Add VueUiTreemap component test

Thu Feb 20 08:31:53 2025 +0100 - graphieros

Commit: 222a3f5

  • Tests - Add VueUiTiremarks component test

Thu Feb 20 08:05:10 2025 +0100 - graphieros

Commit: 5f1cd2f

  • Tests - Add VueUiTableSparkline component test

Thu Feb 20 07:40:41 2025 +0100 - graphieros

Commit: 1f1a749

  • Tests - Add VueUiTableHeatmap component test

Thu Feb 20 06:43:34 2025 +0100 - graphieros

Commit: face91b

  • Tests - Add VueUiStripPlot component test

Wed Feb 19 19:28:03 2025 +0100 - graphieros

Commit: 64b2c0f

  • Other - Remove commented code

Wed Feb 19 19:20:19 2025 +0100 - graphieros

Commit: d745161

  • Tests - Add VueUiQuickChart component test

Wed Feb 19 18:14:15 2025 +0100 - graphieros

Commit: bf09e7b

  • v2.6.4-beta.5

Wed Feb 19 18:09:18 2025 +0100 - graphieros

Commit: 6c1535b

  • Improvement - VueUiXyCanvas - Make time label x marker optional

Wed Feb 19 18:08:34 2025 +0100 - graphieros

Commit: aa1249e

  • Improvement - VueUiXyCanvas - Update config

Wed Feb 19 16:04:59 2025 +0100 - graphieros

Commit: 654e3b1

  • v2.6.4-beta.4

Wed Feb 19 16:00:29 2025 +0100 - graphieros

Commit: a159489

  • v2.6.4-beta.3

Wed Feb 19 15:59:29 2025 +0100 - graphieros

Commit: b1ecb7e

  • Improvement - VueUiXyCanvas - Add optional Y maker when tooltip is active

Wed Feb 19 15:56:05 2025 +0100 - graphieros

Commit: 9ca068b

  • Improvement - Update VueUiXyCanvas config

Wed Feb 19 08:23:21 2025 +0100 - graphieros

Commit: e6dd921

  • Tests - Add VueUiParallelCoordinatePlot component test

Wed Feb 19 07:56:05 2025 +0100 - graphieros

Commit: e1d0802

  • Tests - Add VueUiOnion component test

Wed Feb 19 06:47:11 2025 +0100 - graphieros

Commit: 08fa448

  • v2.6.4-beta.2

Wed Feb 19 06:43:56 2025 +0100 - graphieros

Commit: 4f8a3d1

  • Improvement - VueUiXyCanvas - Improve selector precision

Wed Feb 19 06:07:58 2025 +0100 - graphieros

Commit: a79b583

  • v2.6.4-beta.1

Wed Feb 19 06:07:37 2025 +0100 - graphieros

Commit: 3466f38

  • Improvement - VueUiXyCanvas - Add horizontal selector

Tue Feb 18 12:45:27 2025 +0100 - graphieros

Commit: 923a432

  • v2.6.4-beta.0

Tue Feb 18 12:45:05 2025 +0100 - graphieros

Commit: 337116d

  • Fix - VueUiCanvas - Fix wrong scale in stack mode with individual scale

Tue Feb 18 11:29:22 2025 +0100 - graphieros

Commit: 73d45bc

  • Tests - Add VueUiNestedDonuts component test

Tue Feb 18 10:38:43 2025 +0100 - graphieros

Commit: 4d7af5d

  • Tests - Add VueUiMoodRadar component test

Mon Feb 17 17:02:08 2025 +0100 - graphieros

Commit: 7387494

  • Tests - Add VueUiMolecule component test

Mon Feb 17 16:36:31 2025 +0100 - graphieros

Commit: 6796bc0

  • Tests - Add VueUiMiniLoader component test

Mon Feb 17 16:23:39 2025 +0100 - graphieros

Commit: eccbb7c

  • Tests - Improve VueUiKpi component test

Mon Feb 17 14:35:00 2025 +0100 - graphieros

Commit: 3690dd1

  • Tests - Add VueUiHistoryPlot component test

Mon Feb 17 14:34:42 2025 +0100 - graphieros

Commit: c17c7ec

  • Bump dompurify version

Mon Feb 17 13:51:41 2025 +0100 - graphieros

Commit: 7d0175e

  • Tests - Add VueUiGizmo component test

Mon Feb 17 12:42:25 2025 +0100 - graphieros

Commit: 9422e5f

  • Tests - Add VueUiGalaxy component test

Mon Feb 17 12:04:48 2025 +0100 - graphieros

Commit: dd02a74

  • Tests - Add VueUiFunnel component test

Mon Feb 17 11:43:57 2025 +0100 - graphieros

Commit: 69a0d04

  • Tests - Add VueUiFlow component test

Mon Feb 17 11:36:08 2025 +0100 - graphieros

Commit: b674df3

  • Tests - Fix dataTable wrong key in testCommonFeatures calls

Mon Feb 17 11:25:20 2025 +0100 - graphieros

Commit: f6887f9

  • Tests - Add VueUiDumbbell component test

Mon Feb 17 11:24:48 2025 +0100 - graphieros

Commit: 7b93304

  • Fix - VueUiDumbbell - Move data labels to their own loop

Mon Feb 17 09:50:02 2025 +0100 - graphieros

Commit: 12fc26b

  • Tests - Add VueUiDigits component test

Mon Feb 17 09:49:39 2025 +0100 - graphieros

Commit: 626fe32

  • Fix - VueUiDashboard - Use createUid instead of Math.random

Mon Feb 17 09:13:25 2025 +0100 - graphieros

Commit: 4169294

  • Tests - Add VueUiCursor component test

Mon Feb 17 08:31:04 2025 +0100 - graphieros

Commit: e722d8a

  • Tests - Add VueUiCirclePack component test

Sun Feb 16 19:49:13 2025 +0100 - graphieros

Commit: 8cc1587

  • Tests - Add VueUiStackbar component test

Sun Feb 16 17:50:43 2025 +0100 - graphieros

Commit: 25a416b

  • Add comment on old testing arena

Sun Feb 16 17:35:57 2025 +0100 - graphieros

Commit: f70aa56

  • Tests - Add VueUiCarouselTable component test

Sun Feb 16 14:33:19 2025 +0100 - graphieros

Commit: a893d53

  • Tests - Rewrite VueUiCandlestick component test

Sun Feb 16 13:22:51 2025 +0100 - graphieros

Commit: 5108719

  • Tests - Add VueUiBullet component test

Sun Feb 16 10:17:53 2025 +0100 - graphieros

Commit: 7b46a14

  • Tests - Add VueUiAgePyramid component test

Sun Feb 16 09:22:42 2025 +0100 - graphieros

Commit: a169a09

  • Tests - Add VueUi3dBar component test

Sat Feb 15 23:58:43 2025 +0100 - graphieros

Commit: 01bc55c

  • Tests - Add VueDataUi universal component test

Sat Feb 15 17:47:40 2025 +0100 - graphieros

Commit: 89de305

  • Tests - Add BaseDirectionPad component test

Sat Feb 15 17:18:35 2025 +0100 - graphieros

Commit: 11047a3

  • Tests - Add DataTable component test

Sat Feb 15 16:52:18 2025 +0100 - graphieros

Commit: 81a42bc

  • Tests - Add Legend component test

Sat Feb 15 13:35:02 2025 +0100 - graphieros

Commit: 8bde7cc

  • Tests - Add PenAndPaper component test

Sat Feb 15 13:34:30 2025 +0100 - graphieros

Commit: bc5f37c

  • Improvement - ColorPicker (PenAndPaper) use buttons for accessibility

Sat Feb 15 10:46:55 2025 +0100 - graphieros

Commit: 85a6d08

  • Tests - Add test for Slicer component

Sat Feb 15 10:46:30 2025 +0100 - graphieros

Commit: 7223e9f

  • Add dedicated vite config for cy

Sat Feb 15 08:09:39 2025 +0100 - graphieros

Commit: 4da6725

  • Tests - Improve UserOptions component tests

Sat Feb 15 08:08:58 2025 +0100 - graphieros

Commit: 28cf926

  • Update CONTRIBUTING.md

Sat Feb 15 08:08:46 2025 +0100 - graphieros

Commit: eaca14f

  • Update cypress version

Sat Feb 15 06:15:53 2025 +0100 - graphieros

Commit: 80a4c16

  • Dev environment - App.vue fix

Sat Feb 15 06:15:33 2025 +0100 - graphieros

Commit: 406684d

  • Update CONTRIBUTING.md

Sat Feb 15 06:15:22 2025 +0100 - graphieros

Commit: e0fd536

  • Update jspdf dep

Sat Feb 15 05:54:08 2025 +0100 - graphieros

Commit: 3d53be2

  • Update CONTRIBUTING.md

Fri Feb 14 17:25:19 2025 +0100 - graphieros

Commit: fc83dfa

  • Documentation - Improve contributing doc

Fri Feb 14 17:24:58 2025 +0100 - graphieros

Commit: 4c07f3e

  • Dev environment - Add documentation

Wed Feb 12 05:58:31 2025 +0100 - graphieros

Commit: 59e8fc6

  • v2.6.3

Wed Feb 12 05:58:20 2025 +0100 - graphieros

Commit: a07f1cd

  • Update documentation

Wed Feb 12 05:57:16 2025 +0100 - graphieros

Commit: f416666

  • Improvement - VueUiRating - Add layer-under and layer-above scoped slots to customize rating units

Wed Feb 12 05:56:25 2025 +0100 - graphieros

Commit: 585835a

  • Dev environment - Update VueUiRating testing arena

Tue Feb 11 06:37:44 2025 +0100 - graphieros

Commit: e004f00

  • Add warning message when dataset is empty or has the wrong format

Mon Feb 10 07:26:24 2025 +0100 - graphieros

Commit: bb70d00

  • v2.6.2

Mon Feb 10 07:26:13 2025 +0100 - graphieros

Commit: e71ba80

  • Improvement - VueUiXy - Ignore null datapoints for line generation

Sun Feb 9 09:24:34 2025 +0100 - graphieros

Commit: 4dadd5b

  • v2.6.1

Fri Feb 7 06:34:04 2025 +0100 - graphieros

Commit: 5fcf0de

  • v2.6.0

Fri Feb 7 06:04:37 2025 +0100 - graphieros

Commit: 6080645

  • v2.6.0-beta.1

Fri Feb 7 06:04:14 2025 +0100 - graphieros

Commit: 502fd39

  • Add post-build script

Fri Feb 7 05:39:14 2025 +0100 - graphieros

Commit: 1deaf25

  • v2.6.0-beta.0

Fri Feb 7 05:38:06 2025 +0100 - graphieros

Commit: 018406b

  • Types - Fix missing param

Fri Feb 7 05:37:18 2025 +0100 - graphieros

Commit: af32586

  • Fix - BaseIcon - Remove typo

Tue Feb 4 19:24:41 2025 +0100 - graphieros

Commit: c6573a9

  • Update vitest

Tue Feb 4 18:14:13 2025 +0000 - dependabot[bot]

Commit: 481817c

  • Bump vitest from 2.1.1 to 2.1.9

Tue Feb 4 05:34:47 2025 +0100 - graphieros

Commit: d1cdf67

  • v2.5.9

Tue Feb 4 05:31:37 2025 +0100 - graphieros

Commit: db63509

  • Update docs

Tue Feb 4 05:31:28 2025 +0100 - graphieros

Commit: efd7551

  • Build - Export createTSpans utility function

Tue Feb 4 05:30:50 2025 +0100 - graphieros

Commit: 90851c2

  • Improvement - VueUiCirclePack - Improve placement algo, add #data-label slot, add @selectDatapoint emit

Tue Feb 4 05:27:39 2025 +0100 - graphieros

Commit: 49387b4

  • Dev environment - Update VueUiCirclePack testing arena

Tue Feb 4 05:27:14 2025 +0100 - graphieros

Commit: c84e53e

  • Types - Add createTSpan utility function signature

Mon Feb 3 07:03:45 2025 +0100 - graphieros

Commit: 5c3af84

  • v2.5.8

Mon Feb 3 07:03:33 2025 +0100 - graphieros

Commit: 8015cf6

  • Fix - VueUiCirclePack - Fix wrong ref to config attr in zoom value rounding

Sun Feb 2 20:30:40 2025 +0100 - graphieros

Commit: 97874b0

  • v2.5.7

Sun Feb 2 20:30:24 2025 +0100 - graphieros

Commit: b75b4bf

  • Fix - VueUiCirclePack - Improve circle label positioning and sizing

Sun Feb 2 17:33:43 2025 +0100 - graphieros

Commit: f5db714

  • v2.5.6

Sun Feb 2 17:33:27 2025 +0100 - graphieros

Commit: 9ececaa

  • Fix - VueUiCirclePack - Improve label placement

Sun Feb 2 16:14:04 2025 +0100 - graphieros

Commit: 0b90bf8

  • v2.5.5

Sun Feb 2 16:13:47 2025 +0100 - graphieros

Commit: bc24fae

  • Types - Update VueUiCirclePackDatasetItem type

Sun Feb 2 11:35:46 2025 +0100 - graphieros

Commit: 0c9eb6b

  • v2.5.4

Sun Feb 2 11:35:17 2025 +0100 - graphieros

Commit: cadc39d

  • Fix - VueUiCirclePack - Fix default palette reference

Sun Feb 2 11:30:32 2025 +0100 - graphieros

Commit: e2ba0cf

  • v2.5.3

Sun Feb 2 11:30:10 2025 +0100 - graphieros

Commit: 89da479

  • Fix - VueUiCirclePack - Fix default palette reference

Sun Feb 2 11:03:49 2025 +0100 - graphieros

Commit: aa7a324

  • v2.5.2

Sun Feb 2 11:01:35 2025 +0100 - graphieros

Commit: 29a252c

  • v2.5.1

Sun Feb 2 11:01:16 2025 +0100 - graphieros

Commit: 77ae991

  • Remove log

Sun Feb 2 10:56:24 2025 +0100 - graphieros

Commit: 1970014

  • v2.5.0

Sun Feb 2 10:54:01 2025 +0100 - graphieros

Commit: 1f48ad7

  • Update docs

Sun Feb 2 10:53:46 2025 +0100 - graphieros

Commit: c8892fc

  • Improvement - VueUiCirclePack - Add themes

Sun Feb 2 10:22:30 2025 +0100 - graphieros

Commit: f9f872e

  • New feature - Add VueUiCirclePack component

Sun Feb 2 10:22:18 2025 +0100 - graphieros

Commit: ac09f94

  • Fix bad config ref

Sun Feb 2 10:21:25 2025 +0100 - graphieros

Commit: 39ea30b

  • Types - Add types for VueUiCirclePack

Sun Feb 2 10:21:04 2025 +0100 - graphieros

Commit: 0a32706

  • New feature - Add VueUiCirclePack component

Sat Feb 1 21:15:56 2025 +0100 - graphieros

Commit: f58b092

  • Experiment - Attempt to make a circle packing dataviz

Sat Feb 1 20:39:41 2025 +0100 - graphieros

Commit: 6cd386d

  • Experiment - Attempt to make a circle packing dataviz

Sat Feb 1 18:34:03 2025 +0100 - graphieros

Commit: 895b8ff

  • Experiment - Attempt to make a circle packing dataviz

Sat Feb 1 10:24:10 2025 +0100 - graphieros

Commit: 0709817

  • Experiment - Attempt to make a circle packing dataviz

Sat Feb 1 09:06:40 2025 +0100 - graphieros

Commit: e229dab

  • Experiment - Attempt to make a circle packing dataviz

Mon Jan 27 17:39:31 2025 +0100 - graphieros

Commit: f5e6d55

  • v2.4.90

Mon Jan 27 17:37:55 2025 +0100 - graphieros

Commit: 7a33605

  • Fix - VueUiGauge - Account for min pos >0 to calc indicatorArc percentage

Mon Jan 27 17:30:44 2025 +0100 - graphieros

Commit: e891e0e

  • v2.4.89

Mon Jan 27 17:30:31 2025 +0100 - graphieros

Commit: 259b5cc

  • Improvement - VueUiGauge - Add indicator arc config options and option to hide the pointer

Mon Jan 27 17:29:43 2025 +0100 - graphieros

Commit: 71d1c14

  • Dev environment - Update VueUiGauge testing arena

Mon Jan 27 17:29:20 2025 +0100 - graphieros

Commit: 81a72a1

  • Internal lib - Add createHalfCircleArc utility function

Mon Jan 27 17:28:53 2025 +0100 - graphieros

Commit: c35029c

  • Config - Update VueUiGauge config

Mon Jan 27 17:28:34 2025 +0100 - graphieros

Commit: 1e93555

  • Types - Update VueUiGaugeConfig type

Fri Jan 24 05:46:42 2025 +0100 - graphieros

Commit: b502c55

  • v2.4.88

Fri Jan 24 05:44:58 2025 +0100 - graphieros

Commit: 3f5742f

  • Types - Fix wrong type

Wed Jan 22 17:43:37 2025 +0100 - graphieros

Commit: ddb82dc

  • v2.4.87

Wed Jan 22 17:41:46 2025 +0100 - graphieros

Commit: bfe6519

  • Dev environment - Update testing arena

Wed Jan 22 17:41:28 2025 +0100 - graphieros

Commit: 3287ada

  • Fix - Reset mutable config in config watcher

Wed Jan 22 06:41:33 2025 +0000 - dependabot[bot]

Commit: bc4284f

  • Bump vite from 5.4.7 to 5.4.14

Tue Jan 21 19:04:04 2025 +0100 - graphieros

Commit: 864bf59

  • v2.4.86

Tue Jan 21 19:02:18 2025 +0100 - graphieros

Commit: c875789

  • Improvement - VueUiXy - Strip out unnecessary dom nodes

Tue Jan 21 07:36:17 2025 +0100 - graphieros

Commit: 7cda21c

  • v2.4.85

Tue Jan 21 07:32:02 2025 +0100 - graphieros

Commit: dd9d678

  • Fix - Remove harmless console error in responsive mode

Tue Jan 21 06:13:07 2025 +0100 - graphieros

Commit: 85ca083

  • v2.4.84

Tue Jan 21 06:10:48 2025 +0100 - graphieros

Commit: e62e5ae

  • Tests - Update VueUiXy component test

Tue Jan 21 06:05:30 2025 +0100 - graphieros

Commit: ec92209

  • Improvement - VueUiXy - Reduce number of dom nodes for line gen, hide line plots above threshold

Tue Jan 21 06:04:40 2025 +0100 - graphieros

Commit: 9840f9c

  • Types - Update VueUiXyConfig type

Tue Jan 21 06:04:18 2025 +0100 - graphieros

Commit: d708d7b

  • Config - VueUiXy - Add threshold to hide line plots

Tue Jan 21 06:03:48 2025 +0100 - graphieros

Commit: c80885f

  • Atoms - Slicer - Remove unused code

Sun Jan 19 16:16:21 2025 +0100 - graphieros

Commit: d87f8d4

  • v2.4.83

Sun Jan 19 16:13:52 2025 +0100 - graphieros

Commit: 38a8645

  • Remove unused import

Sun Jan 19 16:09:50 2025 +0100 - graphieros

Commit: 239fbff

  • Types - Fix wrong types in ChartUserOptions type

Sat Jan 18 07:18:07 2025 +0100 - graphieros

Commit: 53926d2

  • v2.4.82

Sat Jan 18 07:16:06 2025 +0100 - graphieros

Commit: 36dca6f

  • Atoms - Slicer - Minor css adjustment

Sat Jan 18 06:32:39 2025 +0100 - Alec Lloyd Probert

Commit: bcd8ea3

  • Update README.md

Sat Jan 18 06:31:44 2025 +0100 - Alec Lloyd Probert

Commit: 32403b6

  • Update README.md

Fri Jan 17 17:18:50 2025 +0100 - graphieros

Commit: 461fe71

  • v2.4.81

Fri Jan 17 17:16:50 2025 +0100 - graphieros

Commit: 6d88e2c

  • Dev environment - Update VueUiXy testing arena

Fri Jan 17 17:16:25 2025 +0100 - graphieros

Commit: db45585

  • Slicer - Set white-space nowrap on range handle tooltip

Fri Jan 17 16:20:52 2025 +0100 - graphieros

Commit: 55b247a

  • v2.4.80

Fri Jan 17 16:16:51 2025 +0100 - graphieros

Commit: e8c0f77

  • Dev environment - Update VueUiXy testing arena

Fri Jan 17 16:16:23 2025 +0100 - graphieros

Commit: 4a0be0b

  • Atoms - Slicer - Improve design with tooltips above range handles

Fri Jan 17 02:30:56 2025 +0100 - graphieros

Commit: eb61e3f

  • v2.4.79

Fri Jan 17 02:28:38 2025 +0100 - graphieros

Commit: ba4aa44

  • Fix - VueUiWordCloud - Fix NaN font size when all datapoints all have the same value

Thu Jan 16 19:29:56 2025 +0100 - graphieros

Commit: 9d128be

  • v2.4.78

Thu Jan 16 19:27:49 2025 +0100 - graphieros

Commit: 7bf8b22

  • Fix - VueUiXy - Fix scaleMin issue

Thu Jan 16 06:56:07 2025 +0100 - graphieros

Commit: fc3bf67

  • v2.4.77

Thu Jan 16 06:54:05 2025 +0100 - graphieros

Commit: 98af887

  • Fix - VueUiDonut - Fix NaN% values in data table

Thu Jan 16 06:17:41 2025 +0100 - graphieros

Commit: bf36808

  • v2.4.76

Thu Jan 16 06:15:53 2025 +0100 - graphieros

Commit: 3b70024

  • Fix - VueUiXy - Add missing x offset on serie yLabels in individual scale mode

Wed Jan 15 07:22:08 2025 +0100 - graphieros

Commit: bf197ce

  • v2.4.75

Wed Jan 15 07:18:51 2025 +0100 - graphieros

Commit: 8cb6de9

  • Atoms - Slicer - Allow minimap selection drag on mobile

Wed Jan 15 06:56:35 2025 +0100 - graphieros

Commit: 0a758a5

  • v2.4.74

Wed Jan 15 06:54:22 2025 +0100 - graphieros

Commit: cc4beb1

  • Atoms - Slicer - Fix vertical scroll freeze when touch dragging minimap

Sun Jan 12 17:15:32 2025 +0100 - graphieros

Commit: 7e9cca6

  • v2.4.73

Sun Jan 12 17:13:25 2025 +0100 - graphieros

Commit: 49a6df6

  • Fix - VueUiXy - Show patterns on line areas

Sun Jan 12 17:12:57 2025 +0100 - graphieros

Commit: b77e139

  • Atoms - Slicer - Improve speed of selection drag on large datasets

Sun Jan 12 08:35:39 2025 +0100 - graphieros

Commit: fa97867

  • v2.4.72

Sun Jan 12 08:35:16 2025 +0100 - graphieros

Commit: 1f151c3

  • Types - Update ChartMinimap type

Sun Jan 12 08:35:01 2025 +0100 - graphieros

Commit: c4e20fb

  • Config - Update minimap default config

Sun Jan 12 08:34:41 2025 +0100 - graphieros

Commit: 27bb80e

  • Fix - Themes - Fix wrong label text color in VueUiFunnel in celebrationNight theme

Sun Jan 12 08:34:04 2025 +0100 - graphieros

Commit: ce20da9

  • Improvement - Add support for optional vertical handles in slicer with minimap

Sun Jan 12 08:33:26 2025 +0100 - graphieros

Commit: a7b08a4

  • Atoms - Slicer - Add optional vertical handles style for minimap variant

Sun Jan 12 08:32:49 2025 +0100 - graphieros

Commit: 8910ce0

  • Atoms - MonoSlicer - Change cursor style

Sun Jan 12 08:32:17 2025 +0100 - graphieros

Commit: ce59bdc

  • Dev environment - Update testing arena

Sat Jan 11 16:56:50 2025 +0100 - graphieros

Commit: aa989b9

  • v2.4.71

Sat Jan 11 16:56:28 2025 +0100 - graphieros

Commit: 93832fb

  • Expose new celebration palettes in getPalette utility

Thu Jan 9 08:47:35 2025 +0100 - graphieros

Commit: b108ac5

  • v2.4.70

Thu Jan 9 08:47:20 2025 +0100 - graphieros

Commit: 1aa29ba

  • Update readme

Thu Jan 9 08:47:09 2025 +0100 - graphieros

Commit: 9ac394b

  • Dev environment - Update testing arena

Thu Jan 9 08:46:24 2025 +0100 - graphieros

Commit: 42c889f

  • Fix - VueUiRadar - Set stackbar transparent color in tooltip

Thu Jan 9 08:41:32 2025 +0100 - graphieros

Commit: 0b03927

  • Themes - Add celebration themes

Thu Jan 9 08:41:16 2025 +0100 - graphieros

Commit: 34a2bb8

  • Types - Add celebration options in Theme type

Thu Jan 9 08:40:58 2025 +0100 - graphieros

Commit: 8f573dd

  • Palettes - Add celebration palettes

Tue Jan 7 05:48:19 2025 +0100 - graphieros

Commit: c0c6e1c

  • v2.4.69

Tue Jan 7 05:44:43 2025 +0100 - graphieros

Commit: b10f4ec

  • Improvement - VueUiVerticalBar - Add 'none' sort config option

Tue Jan 7 05:43:00 2025 +0100 - graphieros

Commit: 42cd83f

  • Config - Update VueUiVerticalBar config

Tue Jan 7 05:42:42 2025 +0100 - graphieros

Commit: 5472389

  • Dev environment - Update VueUiVerticalBar testing arena

Tue Jan 7 05:41:37 2025 +0100 - graphieros

Commit: 113c5e0

  • Types - Add 'none' sort option in VueUiVerticalBarConfig type

Tue Jan 7 05:40:59 2025 +0100 - graphieros

Commit: c837a3a

  • Add error type for wrong attribute values

Mon Jan 6 16:47:49 2025 +0100 - graphieros

Commit: cc0dfb1

  • v2.4.68

Mon Jan 6 16:45:40 2025 +0100 - graphieros

Commit: d428b3a

  • Improvement - VueUiWaffle - Add support for the pattern scoped slot

Mon Jan 6 16:44:58 2025 +0100 - graphieros

Commit: d74917f

  • Update readme

Mon Jan 6 16:44:38 2025 +0100 - graphieros

Commit: 4252dfd

  • Dev environment - Update VueUiWaffle testing arena

Sun Jan 5 09:05:30 2025 +0100 - graphieros

Commit: bfc897f

  • Update readme

Sun Jan 5 09:03:34 2025 +0100 - graphieros

Commit: 4f4bf33

  • v2.4.67

Sun Jan 5 09:01:28 2025 +0100 - graphieros

Commit: 258aad8

  • Update docs

Sun Jan 5 09:01:00 2025 +0100 - graphieros

Commit: 00edf38

  • Improvement - VueDataUi universal component - Improve error messages

Sun Jan 5 09:00:38 2025 +0100 - graphieros

Commit: cdfc3d9

  • Dev environment - Update testing arena

Sun Jan 5 09:00:14 2025 +0100 - graphieros

Commit: be0016d

  • New feature - Add VueUiPattern utility component

Sun Jan 5 08:59:18 2025 +0100 - graphieros

Commit: 6858ec7

  • Types - Add types for VueUiPattern component

Sat Jan 4 10:01:47 2025 +0100 - graphieros

Commit: 8574b25

  • v2.4.66

Sat Jan 4 10:00:02 2025 +0100 - graphieros

Commit: 3b60c08

  • Update readme

Sat Jan 4 09:59:52 2025 +0100 - graphieros

Commit: 484d660

  • Fix - VueUiXy - Fix regression hiding vertical grid lines

Sat Jan 4 09:59:22 2025 +0100 - graphieros

Commit: 1d68cee

  • Dev environment - Update VueUiXy testing arena

Sat Jan 4 09:23:02 2025 +0100 - graphieros

Commit: 9d40c65

  • v2.4.65

Sat Jan 4 09:22:47 2025 +0100 - graphieros

Commit: 8dda404

  • Dev environment - Update testing arena

Sat Jan 4 09:07:54 2025 +0100 - graphieros

Commit: bfd7927

  • Update docs

Sat Jan 4 09:07:36 2025 +0100 - graphieros

Commit: 2e85ca1

  • Fix - VueUiSparkline - Prevent harmless svg console error in some cases

Sat Jan 4 09:06:48 2025 +0100 - graphieros

Commit: e9c4261

  • Improvement - Add pattern scoped slot

Sat Jan 4 09:05:58 2025 +0100 - graphieros

Commit: 89093ff

  • Atoms - Legend - Add pattern support

Sat Jan 4 09:05:17 2025 +0100 - graphieros

Commit: 6efe1de

  • Dev environment - Update testing arena

Sat Jan 4 09:04:45 2025 +0100 - graphieros

Commit: 256b079

  • Internal lib - Add forceValidValue utility function

Fri Jan 3 08:16:53 2025 +0100 - graphieros

Commit: cde7db0

  • v2.4.64

Fri Jan 3 08:13:58 2025 +0100 - graphieros

Commit: a4a81da

  • Fix harmless svg console errors while the chart is still computing

Thu Jan 2 18:04:45 2025 +0100 - graphieros

Commit: b539edd

  • v2.4.63

Thu Jan 2 18:02:30 2025 +0100 - graphieros

Commit: 2b9947f

  • Improvement - Add zoom drag optional feature

Thu Jan 2 18:01:52 2025 +0100 - graphieros

Commit: 6b91f17

  • Dev environment - Update testing arena

Thu Jan 2 18:01:27 2025 +0100 - graphieros

Commit: 01f8dec

  • Atoms - Add drag selection feature to Slicer component

Thu Jan 2 17:59:14 2025 +0100 - graphieros

Commit: 8b550d3

  • Config - Update zoom config

Thu Jan 2 17:57:08 2025 +0100 - graphieros

Commit: 0b5cc86

  • Types - Update ChartZoom type

Thu Jan 2 05:52:53 2025 +0100 - graphieros

Commit: 5647da3

  • v2.4.62

Thu Jan 2 05:50:52 2025 +0100 - graphieros

Commit: f974e8c

  • Improvement - VueUiSparkline - Add padding config attributes

Thu Jan 2 05:50:33 2025 +0100 - graphieros

Commit: e8f24ef

  • Dev environment - Update VueUiSparkline testing arena

Thu Jan 2 05:50:11 2025 +0100 - graphieros

Commit: b8cc989

  • Config - Add padding on VueUiSparkline config

Thu Jan 2 05:49:48 2025 +0100 - graphieros

Commit: 284e8f0

  • Types - Add padding on VueUiSparklineConfig type

Wed Jan 1 05:33:04 2025 +0100 - graphieros

Commit: 81e1445

  • v2.4.61

Wed Jan 1 05:30:15 2025 +0100 - graphieros

Commit: c4c24c9

  • Improvement - VueUiSparkline - Add scaleMin and scaleMax config attributes

Wed Jan 1 05:29:46 2025 +0100 - graphieros

Commit: e4c1382

  • Dev environment - Update VueUiSparkline testing arena

Wed Jan 1 05:29:23 2025 +0100 - graphieros

Commit: 61b3e20

  • Config - Update VueUiSparkline config

Wed Jan 1 05:29:05 2025 +0100 - graphieros

Commit: 9b41ea9

  • Types - Update VueUiSparklineConfig type

Mon Dec 30 10:41:30 2024 +0100 - graphieros

Commit: d91f8cf

  • v2.4.60

Mon Dec 30 10:39:14 2024 +0100 - graphieros

Commit: 7a7796f

  • Fix - VueUiDonut - Hide hollow circle when shadow is not used

Mon Dec 30 08:09:23 2024 +0100 - graphieros

Commit: e57e2c1

  • v2.4.59

Mon Dec 30 07:35:12 2024 +0100 - graphieros

Commit: ded59e5

  • Update documentation

Mon Dec 30 07:34:56 2024 +0100 - graphieros

Commit: 774d311

  • Improvement - Add #chart-background slot support

Mon Dec 30 07:33:47 2024 +0100 - graphieros

Commit: 2a05225

  • Dev environment - Update testing arena

Mon Dec 30 07:32:42 2024 +0100 - graphieros

Commit: b359202

  • Config - Update VueUiFlow default config

Sun Dec 29 09:57:16 2024 +0100 - graphieros

Commit: 216c722

  • v2.4.58

Sun Dec 29 09:55:10 2024 +0100 - graphieros

Commit: decee1e

  • Fix - VueUiGauge - Always start animation from the smallest from value

Fri Dec 27 12:48:17 2024 +0100 - graphieros

Commit: 8cc2ed5

  • v2.4.57

Fri Dec 27 12:46:18 2024 +0100 - graphieros

Commit: 2bb1c4c

  • Fix - VueUiStackbar - Fix NaN% and add config options to hide empty values

Fri Dec 27 12:45:42 2024 +0100 - graphieros

Commit: 0bc07c6

  • Dev environment - Update VueUiStackbar testing arena

Fri Dec 27 12:45:26 2024 +0100 - graphieros

Commit: 4c9952f

  • Config - Update VueUiStackbar config

Fri Dec 27 12:45:14 2024 +0100 - graphieros

Commit: 1fc3acd

  • Types - Update VueUiStackbarConfig type

Fri Dec 27 08:47:18 2024 +0100 - graphieros

Commit: bf83a16

  • v2.4.56

Fri Dec 27 08:44:59 2024 +0100 - graphieros

Commit: e22c47f

  • Improvement - VueUiCarouselTable - Add marquee type animation option

Fri Dec 27 08:44:10 2024 +0100 - graphieros

Commit: 66b57ed

  • Dev environment - Update VueUiCarouselTable testing arena

Fri Dec 27 08:43:48 2024 +0100 - graphieros

Commit: 9ef03b1

  • Config - Update VueUiCarouselTable config

Fri Dec 27 08:43:27 2024 +0100 - graphieros

Commit: 7c55531

  • Improvement - VueUiCarouselTable - Add marquee type animation config option

Fri Dec 27 07:30:31 2024 +0100 - graphieros

Commit: 869d51a

  • v2.4.55

Fri Dec 27 07:28:20 2024 +0100 - graphieros

Commit: 0d21df0

  • Improvement - VueUiWaffle - Improve serie segregating animation timing

Fri Dec 27 07:27:55 2024 +0100 - graphieros

Commit: 91fc28c

  • Improvement - VueUiQuickChart - Donut mode: improve serie segregating animation timing

Fri Dec 27 07:27:27 2024 +0100 - graphieros

Commit: 87a6c2a

  • Improvement - VueUiDonut - Improve serie segregating animation timing

Thu Dec 26 17:54:44 2024 +0100 - graphieros

Commit: 81087e1

  • Improvement - VueUiDonut - Improve serie segregating animation timing

Thu Dec 26 15:44:15 2024 +0100 - graphieros

Commit: ec37dba

  • v2.4.54

Thu Dec 26 15:41:45 2024 +0100 - graphieros

Commit: edf6d4d

  • v2.4.53

Thu Dec 26 15:39:48 2024 +0100 - graphieros

Commit: 9b352e8

  • Fix - VueUiSparklineTable - Fix regression in reponsive mode

Thu Dec 26 09:47:05 2024 +0100 - graphieros

Commit: 7037d87

  • v2.4.52

Thu Dec 26 09:44:13 2024 +0100 - graphieros

Commit: f377181

  • Fix reactivity of user options menu display when its config changes

Thu Dec 26 09:41:53 2024 +0100 - graphieros

Commit: bb2bc4b

  • Improvement - VueUiTableSparkline - Display buttons for each sorting order

Thu Dec 26 04:14:34 2024 +0100 - graphieros

Commit: 597c1b1

  • v2.4.51

Thu Dec 26 04:06:15 2024 +0100 - graphieros

Commit: f719317

  • Update readme

Thu Dec 26 04:04:21 2024 +0100 - graphieros

Commit: 6908acb

  • Improvement - Implement user options optional states

Thu Dec 26 04:01:34 2024 +0100 - graphieros

Commit: caa7fa9

  • Dev environment - Update testing arena

Thu Dec 26 04:00:25 2024 +0100 - graphieros

Commit: d4a5856

  • Config - Update user options base config

Thu Dec 26 03:59:47 2024 +0100 - graphieros

Commit: 0286f94

  • Types - Update ChartUserOptions type

Thu Dec 26 03:59:12 2024 +0100 - graphieros

Commit: 21a42e7

  • Composables - Add composable to manage user options state

Tue Dec 24 13:20:28 2024 +0100 - graphieros

Commit: 0ecae7f

  • Update feature request template

Tue Dec 24 13:16:40 2024 +0100 - Alec Lloyd Probert

Commit: 0003b1c

  • Update issue templates

Tue Dec 24 07:30:38 2024 +0100 - graphieros

Commit: e278b90

  • v2.4.50

Tue Dec 24 07:28:45 2024 +0100 - graphieros

Commit: 988c0aa

  • Improvement - VueUiTableSparkline - Change arrow icons & improve sorting states

Mon Dec 23 20:20:33 2024 +0100 - graphieros

Commit: d6ea88f

  • v2.4.49

Mon Dec 23 20:18:19 2024 +0100 - graphieros

Commit: b2fc6fb

  • Improvement - VueUiTableSparkline - Improve column sorting behavior

Mon Dec 23 20:17:26 2024 +0100 - graphieros

Commit: b664a47

  • Dev environment - Update VueUiTableSparkline testing arena

Mon Dec 23 20:17:03 2024 +0100 - graphieros

Commit: 67c40ca

  • Config - Update VueUiTableSparkline config

Mon Dec 23 20:16:23 2024 +0100 - graphieros

Commit: 3d6ee9c

  • Types - Update VueUiTableSparklineConfig type

Mon Dec 23 17:43:37 2024 +0100 - graphieros

Commit: 05bd475

  • v2.4.48

Mon Dec 23 17:39:43 2024 +0100 - graphieros

Commit: f9b6b35

  • Improvement - VueUiTableSparkline - Improve column filtering options

Mon Dec 23 17:39:15 2024 +0100 - graphieros

Commit: ae49e45

  • Dev environment - Update VueUiTableSparkline testing arena

Mon Dec 23 17:38:53 2024 +0100 - graphieros

Commit: 141c216

  • Config - Update VueUiTableSparkline config

Mon Dec 23 17:38:35 2024 +0100 - graphieros

Commit: a97381c

  • Types - Update VueUiTableSparklineConfig type

Mon Dec 23 17:23:09 2024 +0100 - graphieros

Commit: 1510f61

  • Config - Update VueUiSparklineTable config

Mon Dec 23 17:22:20 2024 +0100 - graphieros

Commit: 1939aaa

  • Types - Update VueUiSparklineConfig type

Sun Dec 22 16:13:07 2024 +0100 - graphieros

Commit: b5d29fd

  • v2.4.47

Sun Dec 22 16:10:58 2024 +0100 - graphieros

Commit: cadefb5

  • Improvement - VueUiGauge - Add optional segment separators

Sun Dec 22 16:10:40 2024 +0100 - graphieros

Commit: c72e972

  • Dev environment - Update VueUiGauge testing arena

Sun Dec 22 16:10:17 2024 +0100 - graphieros

Commit: 9fb65aa

  • Config - Update VueUiGauge config

Sun Dec 22 16:10:01 2024 +0100 - graphieros

Commit: e01283c

  • Internal lib - Expose more data hooks in makeDonut util

Sun Dec 22 16:09:19 2024 +0100 - graphieros

Commit: 2729a62

  • Types - Update VueUiGaugeConfig type

Sun Dec 22 06:39:33 2024 +0100 - graphieros

Commit: 1bb5877

  • v2.4.46

Sun Dec 22 06:36:53 2024 +0100 - graphieros

Commit: 8045ba7

  • Improvement - VueUiGauge - Add individual segment name offset dataset option

Sun Dec 22 06:36:22 2024 +0100 - graphieros

Commit: 04eb58c

  • Dev environment - Update VueUiGauge testing arena

Sun Dec 22 06:36:02 2024 +0100 - graphieros

Commit: 3d94d3f

  • Config - Update VueUiGauge config

Sun Dec 22 06:35:31 2024 +0100 - graphieros

Commit: 66562d5

  • Types - Update VueUiGaugeDatasetSerieItem & VueUiGaugeConfig types

Sat Dec 21 08:46:45 2024 +0100 - graphieros

Commit: bf6c81a

  • v2.4.45

Sat Dec 21 08:44:40 2024 +0100 - graphieros

Commit: 89606fd

  • Improvement - VueUiGauge - Add segment name labels

Sat Dec 21 08:44:11 2024 +0100 - graphieros

Commit: 62eeeed

  • Dev environment - Update VueUiGauge testing arena

Sat Dec 21 08:39:38 2024 +0100 - graphieros

Commit: d73c154

  • Internal lib - Fix edge cases for arc generation

Sat Dec 21 08:39:11 2024 +0100 - graphieros

Commit: 5551328

  • Config - Update VueUiGauge config

Sat Dec 21 08:38:56 2024 +0100 - graphieros

Commit: cf61f8d

  • Types - Update VueUiGaugeDatasetSerieItem & VueUiGaugeConfig types

Thu Dec 19 19:54:59 2024 +0100 - graphieros

Commit: 72a82e3

  • v2.4.44

Thu Dec 19 19:52:46 2024 +0100 - graphieros

Commit: db884b1

  • Improvement - VueUiXy - Minor refinement of legend and tooltip marker shapes

Thu Dec 19 19:52:14 2024 +0100 - graphieros

Commit: 51540dc

  • Atoms - Tooltip - Set max z-index inline

Thu Dec 19 21:02:18 2024 +0300 - mnenie

Commit: f407efd

  • fix: animation bug and some calculations

Thu Dec 19 08:39:26 2024 +0100 - graphieros

Commit: c9a7ca5

  • v2.4.43

Thu Dec 19 08:39:02 2024 +0100 - graphieros

Commit: e0be484

  • Update docs

Thu Dec 19 08:38:47 2024 +0100 - graphieros

Commit: 34df9ce

  • Improvement - Add time-label scoped slot and @selectTimeLabel emit

Thu Dec 19 08:37:14 2024 +0100 - graphieros

Commit: 4c35bc9

  • Dev environment - Update testing arena

Thu Dec 19 08:36:54 2024 +0100 - graphieros

Commit: 86ec5ed

  • Config - Add showTimeLabel atr on VueUiXy and VueUiStackbar configs

Thu Dec 19 08:36:26 2024 +0100 - graphieros

Commit: 807f6e5

  • Types - Add showTimeLabel attr on VueUiXyConfig and VueUiStackbarConfig types

Wed Dec 18 19:35:44 2024 +0100 - graphieros

Commit: 446222a

  • v2.4.42

Wed Dec 18 19:33:37 2024 +0100 - graphieros

Commit: 8071720

  • Improvement - Add support for Slicer configurable startIndex & endIndex

Wed Dec 18 19:32:07 2024 +0100 - graphieros

Commit: 75720db

  • Dev environment - Update testing arena

Wed Dec 18 19:31:40 2024 +0100 - graphieros

Commit: a9b6fa2

  • Atoms - Tooltip - Use teleport component

Wed Dec 18 19:31:10 2024 +0100 - graphieros

Commit: f882b3e

  • Atoms - Slicer - Add refresh endpoints props

Wed Dec 18 19:30:20 2024 +0100 - graphieros

Commit: 3e61373

  • Config - Update zoom config attributes

Wed Dec 18 19:29:34 2024 +0100 - graphieros

Commit: 07a04a1

  • Remove unused imports

Wed Dec 18 19:29:13 2024 +0100 - graphieros

Commit: 0f10e25

  • Types - Update ChartZoom type

Wed Dec 18 08:14:00 2024 +0100 - graphieros

Commit: fbb2428

  • v2.4.41

Wed Dec 18 08:12:09 2024 +0100 - graphieros

Commit: 721062c

  • Update test

Wed Dec 18 08:08:48 2024 +0100 - graphieros

Commit: 3c45b1a

  • Improvement - VueUiRelationCircle - Full functionality revamp

Wed Dec 18 08:05:03 2024 +0100 - graphieros

Commit: 4c164f9

  • Dev environment - Update VueUiRelationCircle testing arena

Wed Dec 18 08:04:33 2024 +0100 - graphieros

Commit: 73061ba

  • Config - Update VueUiRelationCircle config

Wed Dec 18 08:04:13 2024 +0100 - graphieros

Commit: d5a6847

  • Types - Update VueUiRelationCircleConfig type

Tue Dec 17 07:00:50 2024 +0100 - graphieros

Commit: 54dbe75

  • v2.4.40

Tue Dec 17 06:58:44 2024 +0100 - graphieros

Commit: 4ca3fdd

  • Improvement - VueUiDashboard - Prevent dashboard events when using range inputs in components

Tue Dec 17 06:57:55 2024 +0100 - graphieros

Commit: 89c17f3

  • Fix - VueUiXy - Correct wrong reference to noTitle element

Mon Dec 16 05:50:51 2024 +0100 - graphieros

Commit: 02b0bd1

  • v2.4.39

Mon Dec 16 05:50:29 2024 +0100 - graphieros

Commit: 64d0da0

  • Add exposed utility functions

Mon Dec 16 05:49:54 2024 +0100 - graphieros

Commit: 803bba8

  • Types - Add types for exposed methods

Sun Dec 15 11:28:06 2024 +0100 - graphieros

Commit: 119d9b5

  • v2.4.38

Sun Dec 15 11:25:53 2024 +0100 - graphieros

Commit: 2e4cadd

  • Improvement - VueUiGauge - Add config attributes to further customize labels

Sun Dec 15 11:25:23 2024 +0100 - graphieros

Commit: 2c9d727

  • Config - Update VueUiGauge config

Sun Dec 15 11:25:04 2024 +0100 - graphieros

Commit: 19c7b9a

  • Types - Update VueUiGaugeConfig types

Sun Dec 15 11:24:48 2024 +0100 - graphieros

Commit: de59738

  • Dev environment - Update VueUiGauge testing arena

Fri Dec 13 06:14:00 2024 +0100 - graphieros

Commit: 3282398

  • Improvement - VueUiIcon - Add chartTableSparkline icon

Fri Dec 13 06:13:23 2024 +0100 - graphieros

Commit: 5996bfe

  • Dev environment - Update VueUiIcon testing arena

Fri Dec 13 06:12:50 2024 +0100 - graphieros

Commit: 64efdc7

  • Types - Update VueUiIcon name type

Thu Dec 12 10:26:24 2024 +0100 - graphieros

Commit: 56bb26f

  • v2.4.37

Thu Dec 12 10:24:31 2024 +0100 - graphieros

Commit: a84c367

  • Improvement - VueUiTableSparkline - Add config attributes to control chart dimensions

Thu Dec 12 10:23:53 2024 +0100 - graphieros

Commit: fa1f47d

  • Dev environment - Update VueUiTableSparkline testing arena

Thu Dec 12 10:23:28 2024 +0100 - graphieros

Commit: 83d903d

  • Improvement - VueUiSparkline - Modifications for embedded use case

Thu Dec 12 10:20:18 2024 +0100 - graphieros

Commit: 8264e4a

  • Types - Update VueUiTableSparklineConfig type

Thu Dec 12 10:19:38 2024 +0100 - graphieros

Commit: b20f5a8

  • Config - Update VueUiTableSparkline config

Thu Dec 12 07:11:41 2024 +0100 - graphieros

Commit: d18abef

  • v2.4.36

Thu Dec 12 07:09:47 2024 +0100 - graphieros

Commit: 95e4640

  • Improvement - VueUiCarouselTable - Add config attribute to control table background

Thu Dec 12 07:09:06 2024 +0100 - graphieros

Commit: 52fb728

  • Config - Update VueUiCarouselTable config

Thu Dec 12 07:08:42 2024 +0100 - graphieros

Commit: 15a3a8e

  • Types - Update VueUiCarouselTableConfig type

Thu Dec 12 06:53:11 2024 +0100 - graphieros

Commit: 3ee1033

  • v2.4.35

Thu Dec 12 06:49:14 2024 +0100 - graphieros

Commit: 8762731

  • Improvement - VueUiTableSparkline - Further alignment improvements

Thu Dec 12 06:39:33 2024 +0100 - graphieros

Commit: 5e11001

  • v2.4.34

Thu Dec 12 06:36:33 2024 +0100 - graphieros

Commit: ce5eb47

  • Improvement - VueUiTableSparkline - Fix thead textAlign, set bigger size for sparkline

Thu Dec 12 06:35:53 2024 +0100 - graphieros

Commit: 82512a9

  • Dev environment - Update VueUiTableSparkline testing arena

Wed Dec 11 15:50:23 2024 +0100 - graphieros

Commit: e3f5f5e

  • v2.4.33

Wed Dec 11 15:48:37 2024 +0100 - graphieros

Commit: 3dfa78c

  • Improvement - VueUiHistoryPlot - Minor paths improvements

Wed Dec 11 10:50:46 2024 +0100 - graphieros

Commit: 4e4f0c8

  • v2.4.32

Wed Dec 11 10:48:50 2024 +0100 - graphieros

Commit: cba4e03

  • Improvement - VueUiTableSparkline - Add config options to control bg color of selected cells

Wed Dec 11 10:48:23 2024 +0100 - graphieros

Commit: 084a961

  • Dev environment - Update VueUiTableSparkline testing arena

Wed Dec 11 10:48:04 2024 +0100 - graphieros

Commit: 1ef7bdb

  • Config - Update VueUiTableSparkline config

Wed Dec 11 10:47:42 2024 +0100 - graphieros

Commit: 5f1e2df

  • Types - Update VueUiTableSparklineConfig type

Wed Dec 11 09:13:43 2024 +0100 - graphieros

Commit: 4b794d7

  • v2.4.31

Wed Dec 11 09:06:29 2024 +0100 - graphieros

Commit: c61cae1

  • New feature - VueUiTableSparkline - Improve datapoint selection behaviour

Wed Dec 11 08:53:15 2024 +0100 - graphieros

Commit: 44598b1

  • v2.4.30

Wed Dec 11 08:51:10 2024 +0100 - graphieros

Commit: 9d5b1d9

  • New feature - VueUiTableSparkline - Improve datapoint selection behaviour

Wed Dec 11 08:50:34 2024 +0100 - graphieros

Commit: e014f9c

  • Dev environment - Update VueUiTableSparkline testing arena

Wed Dec 11 08:49:53 2024 +0100 - graphieros

Commit: 7e19d60

  • Config - Update VueUiTableSparkline config

Wed Dec 11 08:49:33 2024 +0100 - graphieros

Commit: 579bdfd

  • Types - Update VueUiTableSparklineConfig type

Wed Dec 11 01:13:26 2024 +0100 - graphieros

Commit: f6c323f

  • v2.4.29

Wed Dec 11 01:12:53 2024 +0100 - graphieros

Commit: 97942cb

  • Fix - VueUiCarouselTable - Fix regression causing table caption to move

Tue Dec 10 19:32:26 2024 +0100 - graphieros

Commit: b3d630e

  • v2.4.28

Tue Dec 10 17:35:37 2024 +0100 - graphieros

Commit: cbd6a7d

  • Update docs

Tue Dec 10 17:35:08 2024 +0100 - graphieros

Commit: 1dd5696

  • Build - Add VueUiHistoryPlot export

Tue Dec 10 17:34:47 2024 +0100 - graphieros

Commit: a787d03

  • Dev environment - Add VueUiHistoryPlot component

Tue Dec 10 17:34:07 2024 +0100 - graphieros

Commit: 98b89af

  • Fix - VueUiHistoryPlot - Avoid negative viewBox dimensions

Tue Dec 10 17:33:11 2024 +0100 - graphieros

Commit: 80abd04

  • Dev environment - Update VueUiHistoryPlot testing arena

Tue Dec 10 16:03:50 2024 +0100 - graphieros

Commit: 1afe90b

  • v2.4.27

Tue Dec 10 16:00:21 2024 +0100 - graphieros

Commit: 475c024

  • Improvement - VueUiCarouselTable - Add config options to control scrollbar display

Tue Dec 10 15:59:38 2024 +0100 - graphieros

Commit: 5f2fc26

  • Dev environment - Update VueUiCarousel table testing arena

Tue Dec 10 15:59:10 2024 +0100 - graphieros

Commit: 6ac476c

  • Config - Update VueUiCarouselTable config

Tue Dec 10 15:58:47 2024 +0100 - graphieros

Commit: f22e59e

  • Types - Update VueUiCarouselTableConfig type

Tue Dec 10 15:50:43 2024 +0100 - graphieros

Commit: c0320ac

  • New feature - Update VueUiHistoryPlot new component

Tue Dec 10 15:49:25 2024 +0100 - graphieros

Commit: ed5f67a

  • New feature - Add historyPlot skeleton option

Tue Dec 10 15:48:56 2024 +0100 - graphieros

Commit: 059e194

  • Universal component - Add VueUiHistoryPlot support

Tue Dec 10 15:48:20 2024 +0100 - graphieros

Commit: 10ccab2

  • New feature - Add chartHistoryPlot icon

Tue Dec 10 15:47:58 2024 +0100 - graphieros

Commit: 11d9e8e

  • Dev environment - Update testing arena

Tue Dec 10 15:47:35 2024 +0100 - graphieros

Commit: 23a25fa

  • Themes - Add VueUiHistoryPlot themes

Tue Dec 10 15:47:18 2024 +0100 - graphieros

Commit: 5340226

  • Config - Update VueUiHistoryPlot config

Tue Dec 10 15:46:52 2024 +0100 - graphieros

Commit: 7e9ec80

  • Types - Add VueUiHistoryPlots types

Tue Dec 10 05:52:31 2024 +0100 - graphieros

Commit: d13d0c3

  • Dev environment - Update VueUiCarouselTable testing arena

Tue Dec 10 05:52:09 2024 +0100 - graphieros

Commit: 0b4ce32

  • Improvement - VueUiCarouselTable - Add config options: always show scrollbar, hide caption block

Tue Dec 10 05:50:56 2024 +0100 - graphieros

Commit: d316ad2

  • Config - Update VueUiCarouselTable config

Tue Dec 10 05:50:34 2024 +0100 - graphieros

Commit: 29393bd

  • Types - Update VueUiCarouselTableConfig type

Tue Dec 10 05:20:51 2024 +0100 - graphieros

Commit: cfd355e

  • (WIP) - VueUiHistoryPlot

Sat Dec 7 07:47:31 2024 +0100 - graphieros

Commit: 58a4110

  • v2.4.26

Sat Dec 7 07:36:39 2024 +0100 - graphieros

Commit: 4afbdc4

  • Update docs

Sat Dec 7 07:36:25 2024 +0100 - graphieros

Commit: a9995e4

  • New feature - VueUiFunnel - Finalize component

Sat Dec 7 07:35:54 2024 +0100 - graphieros

Commit: 5bcfefc

  • NEw feature - VueUiIcon - Add chartFunnel icon

Sat Dec 7 07:35:38 2024 +0100 - graphieros

Commit: 23b5698

  • Universal component - Add VueUiFunnel support

Sat Dec 7 07:35:16 2024 +0100 - graphieros

Commit: 0c7febd

  • Build - Add VueUiFunnel component

Sat Dec 7 07:34:49 2024 +0100 - graphieros

Commit: 7cabf04

  • Dev environment - Update testing arena

Sat Dec 7 07:33:39 2024 +0100 - graphieros

Commit: 1b15145

  • Types - Add VueUiFunnel types

Fri Dec 6 17:02:50 2024 +0100 - graphieros

Commit: cc775f1

  • v2.4.25

Fri Dec 6 16:56:58 2024 +0100 - graphieros

Commit: aea2958

  • Improvement - VueUiXyCanvas - Add option to show vertical separators on same modulo as time labels

Fri Dec 6 16:56:10 2024 +0100 - graphieros

Commit: 7712ded

  • Dev environment - Update VueUiXyCanvas testing arena

Fri Dec 6 16:55:47 2024 +0100 - graphieros

Commit: ce23e0e

  • Types - Update VueUiXyCanvasConfig type

Fri Dec 6 16:55:28 2024 +0100 - graphieros

Commit: 889c052

  • Config - Update VueUiXyCanvas config

Fri Dec 6 15:38:37 2024 +0100 - graphieros

Commit: 1a7ebc2

  • (WIP) - VueUiFunnel

Fri Dec 6 13:46:12 2024 +0100 - graphieros

Commit: 0fbd029

  • v2.4.24

Fri Dec 6 13:44:18 2024 +0100 - graphieros

Commit: 7b08f54

  • Improvement - VueUiXyCanvas - Add custom scales

Fri Dec 6 13:28:20 2024 +0100 - graphieros

Commit: fd5dc0f

  • v2.4.23

Fri Dec 6 13:23:10 2024 +0100 - graphieros

Commit: 17f2166

  • Dev environment - Update VueUiXyCanvas testing arena

Fri Dec 6 13:22:47 2024 +0100 - graphieros

Commit: ee5c030

  • Config - Update VueUiXyCanvas config

Fri Dec 6 13:22:27 2024 +0100 - graphieros

Commit: d099b71

  • Improvement - VueUiXyCanvas - Add custom scales

Fri Dec 6 13:21:58 2024 +0100 - graphieros

Commit: 01ebe4b

  • Types - Update VueUixyCanvas types

Fri Dec 6 11:58:00 2024 +0100 - graphieros

Commit: fd73edc

  • (WIP) - VueUiFunnel

Fri Dec 6 05:56:40 2024 +0100 - graphieros

Commit: 57f5b77

  • v2.4.22

Fri Dec 6 05:54:24 2024 +0100 - graphieros

Commit: 8931faa

  • Fix - VueUiXyCanvas - Fix dataset reactivity issue

Fri Dec 6 05:40:29 2024 +0100 - graphieros

Commit: 649685f

  • (WIP) VueUiFunnel

Wed Dec 4 17:14:31 2024 +0100 - graphieros

Commit: d8e5b57

  • v2.4.21

Wed Dec 4 17:12:39 2024 +0100 - graphieros

Commit: 2df8f49

  • Atoms - Slicer - Fix harmless svg console error with negative sizes

Tue Dec 3 17:48:24 2024 +0100 - graphieros

Commit: 82b1256

  • v2.4.20

Tue Dec 3 17:45:18 2024 +0100 - graphieros

Commit: 0fb6fae

  • Remove flaky test

Tue Dec 3 17:42:16 2024 +0100 - graphieros

Commit: b080ad9

  • Fix - Slicer - Fix layout shift occurring on data reload

Tue Dec 3 17:31:24 2024 +0100 - graphieros

Commit: ee0df74

  • v2.4.19

Tue Dec 3 17:29:28 2024 +0100 - graphieros

Commit: decc96b

  • Fix - Slicer - Fix layout shift occurring on data reload

Tue Dec 3 16:45:03 2024 +0100 - graphieros

Commit: 44f0648

  • v2.4.18

Tue Dec 3 16:42:53 2024 +0100 - graphieros

Commit: fe9361d

  • Fix - Slicer - Fix layout shift occurring on data reload

Tue Dec 3 16:42:17 2024 +0100 - graphieros

Commit: c206085

  • Dev environment - Update VueUiIcon testing arena

Tue Dec 3 16:41:57 2024 +0100 - graphieros

Commit: 9fb20a3

  • New feature - VueUiIcon - Add boxes icon

Tue Dec 3 16:41:20 2024 +0100 - graphieros

Commit: efd0996

  • Dev environment - Update VueUiXy testing arena

Sun Dec 1 19:19:42 2024 +0100 - graphieros

Commit: bbddd22

  • v2.4.17

Sun Dec 1 19:17:03 2024 +0100 - graphieros

Commit: dabee4d

  • Atoms - Improve built-in annotator's color picker

Sun Dec 1 19:16:10 2024 +0100 - graphieros

Commit: 2dc0d12

  • Add colorPicker icon

Sun Dec 1 12:42:35 2024 +0100 - graphieros

Commit: e9b4c38

  • v2.4.16

Sun Dec 1 12:40:25 2024 +0100 - graphieros

Commit: 33c0e89

  • Atoms - Slicer - Add css class on wrapper to enable css tweaking

Sun Dec 1 12:39:50 2024 +0100 - graphieros

Commit: 6c8d79c

  • Improvement - VueUiWordCloud - Set text dominant-baseline to central

Sun Dec 1 10:01:04 2024 +0100 - graphieros

Commit: 81e38d7

  • v2.4.15

Sun Dec 1 09:33:49 2024 +0100 - graphieros

Commit: a753da0

  • Atoms - UserOptions - Add cy handle

Sun Dec 1 09:33:32 2024 +0100 - graphieros

Commit: 10b1709

  • Atoms - Slicer - Fix resizeObserver setup

Sun Dec 1 09:32:52 2024 +0100 - graphieros

Commit: b6407b9

  • Tests - Rewrite VueUiXy component test

Sun Dec 1 07:03:36 2024 +0100 - graphieros

Commit: a1125c5

  • Improvement - VueUiParallelCoordinatePlot - Expand tooltip trap capture width area

Sat Nov 30 10:43:56 2024 +0100 - graphieros

Commit: d46f520

  • Improvement - VueUiParallelCoordinatePlot - Expand tooltip trap capture width area

Sat Nov 30 09:03:15 2024 +0100 - graphieros

Commit: 8f6654d

  • v2.4.14

Sat Nov 30 08:59:47 2024 +0100 - graphieros

Commit: 504da44

  • Fix - VueUiXy - Fix 0 selected indices

Fri Nov 29 20:05:20 2024 +0100 - graphieros

Commit: 5431acd

  • v2.4.13

Fri Nov 29 20:03:06 2024 +0100 - graphieros

Commit: 604428f

  • Improvement - VueUiXy - Show time tag when hovering minimap; show data labels of hovered x index

Fri Nov 29 19:47:23 2024 +0100 - graphieros

Commit: 5c4104a

  • v2.4.12

Fri Nov 29 19:43:58 2024 +0100 - graphieros

Commit: 3704ade

  • Dev environment - Update VueUiXy testing arena

Fri Nov 29 19:43:37 2024 +0100 - graphieros

Commit: 82894d5

  • Improvement - VueUiXy - Show time tag when hovering minimap; show data labels of hovered x index

Fri Nov 29 06:02:26 2024 +0100 - graphieros

Commit: 671e64e

  • v2.4.11

Fri Nov 29 05:56:28 2024 +0100 - graphieros

Commit: f28b547

  • Update readme

Fri Nov 29 05:56:17 2024 +0100 - graphieros

Commit: c408f19

  • Improvement - Use LTTB algorithm

Fri Nov 29 05:54:39 2024 +0100 - graphieros

Commit: 2634864

  • Types - Update some config types with LTTB

Fri Nov 29 05:53:37 2024 +0100 - graphieros

Commit: 532f9fd

  • Internal lib - Add LTTB algorithm

Fri Nov 29 05:53:01 2024 +0100 - graphieros

Commit: dbdf9fb

  • Config - Add downsample config attribute

Fri Nov 29 05:50:39 2024 +0100 - graphieros

Commit: a8fec7b

  • Dev environment - Update testing arena

Wed Nov 27 17:51:03 2024 +0100 - graphieros

Commit: dc20bd7

  • v2.4.10

Wed Nov 27 17:48:55 2024 +0100 - graphieros

Commit: 02df222

  • Fix - VueUiXy - Place datapoint label correctly when value is 0

Wed Nov 27 06:41:44 2024 +0100 - graphieros

Commit: b2c3113

  • v2.4.9

Wed Nov 27 06:39:45 2024 +0100 - graphieros

Commit: 86b8689

  • Fix - VueUiSparkStackbar - Fix tooltip bg color and text color

Wed Nov 27 06:33:51 2024 +0100 - graphieros

Commit: 92c2e8f

  • v2.4.8

Wed Nov 27 06:28:37 2024 +0100 - graphieros

Commit: 272dfb5

  • Update docs

Wed Nov 27 06:00:17 2024 +0100 - graphieros

Commit: 33eeb18

  • Improvement - VueUiSparkStackbar - Set opacity of unselected bars when tooltip is enabled

Tue Nov 26 19:05:13 2024 +0100 - graphieros

Commit: e31b351

  • Improvement - VueUiSparkStackbar - Add optional tooltip

Tue Nov 26 19:04:51 2024 +0100 - graphieros

Commit: f20ddb2

  • Dev environment - Update VueUiSparkStackbar testing arena

Tue Nov 26 19:04:14 2024 +0100 - graphieros

Commit: 563efc7

  • Config - Update VueUiSparkStackbar config

Tue Nov 26 19:03:28 2024 +0100 - graphieros

Commit: 884b632

  • Atom - Tooltip - Add prop to optionally prevent Y shifting

Tue Nov 26 19:02:37 2024 +0100 - graphieros

Commit: f4fa007

  • Types - Add tooltip to VueUiSparkStackbarConfig

Tue Nov 26 07:36:28 2024 +0100 - graphieros

Commit: 519d8b2

  • Improvement - Atom - PenAndPaper - Smooth current path too

Mon Nov 25 19:43:31 2024 +0100 - graphieros

Commit: 2d10424

  • v2.4.7

Mon Nov 25 19:43:08 2024 +0100 - graphieros

Commit: ad8bd77

  • Atom - PenAndPaper - Actually use the smoothing function

Mon Nov 25 17:26:21 2024 +0100 - graphieros

Commit: d0e9941

  • v2.4.6

Mon Nov 25 17:23:52 2024 +0100 - graphieros

Commit: 8ae077f

  • Atom - Slicer - Add missing rx attributes

Mon Nov 25 17:23:33 2024 +0100 - graphieros

Commit: 30292c2

  • Atom - PenAndPaper - Add strokeWidth and individual color per path

Mon Nov 25 06:18:57 2024 +0100 - graphieros

Commit: 559b1be

  • v2.4.5

Mon Nov 25 06:16:48 2024 +0100 - graphieros

Commit: 3ffd004

  • Atoms - Pen and paper - Optimize svg path outputs

Sun Nov 24 18:10:37 2024 +0100 - graphieros

Commit: 09f1784

  • Update readme

Sun Nov 24 18:09:01 2024 +0100 - graphieros

Commit: 5039198

  • v2.4.4

Sun Nov 24 18:07:05 2024 +0100 - graphieros

Commit: a97f744

  • Dev environment - Update testing arena

Sun Nov 24 18:06:47 2024 +0100 - graphieros

Commit: cf7baee

  • Improvement - Remove artificial padding top when no title is provided

Sun Nov 24 09:45:28 2024 +0100 - graphieros

Commit: c19a05f

  • v2.4.3

Sun Nov 24 09:38:33 2024 +0100 - graphieros

Commit: 44ac6ed

  • New feature - Add source slot for chart source captioning

Sun Nov 24 09:37:30 2024 +0100 - graphieros

Commit: cdc4222

  • Types - Update VueUiSkeletonConfig type

Sun Nov 24 09:37:01 2024 +0100 - graphieros

Commit: 3d2fbf5

  • Dev environment - Update testing arena

Sun Nov 24 09:35:49 2024 +0100 - graphieros

Commit: efcab9e

  • Config - Update VueUiSkeleton config

Sat Nov 23 17:58:27 2024 +0100 - graphieros

Commit: d784db7

  • v2.4.2

Sat Nov 23 17:53:50 2024 +0100 - graphieros

Commit: d536680

  • Update docs

Sat Nov 23 17:53:39 2024 +0100 - graphieros

Commit: db47e79

  • New feature - Add annotator user option

Sat Nov 23 17:52:37 2024 +0100 - graphieros

Commit: ec908ef

  • Dev environment - Update testing arena

Sat Nov 23 17:51:59 2024 +0100 - graphieros

Commit: 896e4af

  • UserOptions - Add PenAndPaper utility

Sat Nov 23 17:51:41 2024 +0100 - graphieros

Commit: 1fcfd9d

  • Atoms - Add annotator user option utility component

Sat Nov 23 17:51:11 2024 +0100 - graphieros

Commit: 7bab924

  • Atoms - Add custom color picker

Sat Nov 23 17:50:51 2024 +0100 - graphieros

Commit: 5266414

  • New feature - VueUiIcon - Add new icons

Sat Nov 23 17:50:12 2024 +0100 - graphieros

Commit: 9174dde

  • Types - Update ChartUserOptions & VueUiIconName types

Sat Nov 23 17:47:58 2024 +0100 - graphieros

Commit: e6aa9d6

  • Internal lib - Remove unnecessary warning

Sat Nov 23 17:47:22 2024 +0100 - graphieros

Commit: 34b7fa3

  • Config - Add annotator user option

Thu Nov 21 15:36:57 2024 +0100 - graphieros

Commit: ed8a0b4

  • v2.4.1

Thu Nov 21 15:36:10 2024 +0100 - graphieros

Commit: 6daf4bd

  • Update docs

Thu Nov 21 10:07:58 2024 +0100 - graphieros

Commit: 7d88595

  • Improvement - VueUiBullet - Negative values support

Thu Nov 21 08:22:08 2024 +0100 - graphieros

Commit: 9feab0b

  • New feature - VueUiBullet - Create component

Thu Nov 21 08:21:11 2024 +0100 - graphieros

Commit: 348f86f

  • New feature - VueUiIcon - Add chartBullet icon

Wed Nov 20 13:10:45 2024 +0100 - graphieros

Commit: 8262a1e

  • v2.4.0

Wed Nov 20 08:23:21 2024 +0100 - graphieros

Commit: 585a13f

  • Update tests

Wed Nov 20 08:13:35 2024 +0100 - graphieros

Commit: 1b25cad

  • Improvement - VueUiSmiley - Improve reactivity, add formatters

Wed Nov 20 08:13:12 2024 +0100 - graphieros

Commit: cfb96d8

  • Improvement - VueUiRating - Add formatter for rating value

Wed Nov 20 08:12:38 2024 +0100 - graphieros

Commit: 82dcb47

  • Config - Update VueUiSmiley & VueUiRating config

Wed Nov 20 08:12:20 2024 +0100 - graphieros

Commit: babeb74

  • Dev environement - Update testing arena

Wed Nov 20 08:11:57 2024 +0100 - graphieros

Commit: a6ea7fd

  • Dev environment - Add VueUiSmiley testing arena

Wed Nov 20 08:11:37 2024 +0100 - graphieros

Commit: 75f4254

  • Types - Update VueUiRatingConfig & VueUiSmileyConfig types

Wed Nov 20 07:15:43 2024 +0100 - graphieros

Commit: 1b44fa8

  • Update component test

Wed Nov 20 07:15:28 2024 +0100 - graphieros

Commit: 418bfc7

  • Update package.lock

Wed Nov 20 07:05:59 2024 +0100 - graphieros

Commit: 7635ae2

  • Improvement - VueUiRating - Improve reactivity, add formatter and roundingValue config options for tooltip

Wed Nov 20 07:04:57 2024 +0100 - graphieros

Commit: b8fa0e9

  • Types - Update VueUiRatingConfig type

Wed Nov 20 07:04:36 2024 +0100 - graphieros

Commit: 831d242

  • Dev environment - Add VueUiRating testing arena

Wed Nov 20 07:04:09 2024 +0100 - graphieros

Commit: cfbba67

  • Config - Update VueUiRating config

Tue Nov 19 15:36:32 2024 +0100 - graphieros

Commit: 0ced547

  • Improvement - VueUiDonut - Apply shadow option in polar mode

Tue Nov 19 06:55:38 2024 +0100 - graphieros

Commit: 845f08d

  • Fix - VueUiIcon - Fix closing path of starFace icon

Tue Nov 19 06:55:08 2024 +0100 - graphieros

Commit: 7c02269

  • Internal lib - Add suport for named color RebeccaPurple

Tue Nov 19 05:44:49 2024 +0100 - graphieros

Commit: 20d2c2b

  • v2.3.99

Tue Nov 19 05:42:04 2024 +0100 - graphieros

Commit: 59a7b02

  • Types - Update VueUiIconName type

Tue Nov 19 05:41:37 2024 +0100 - graphieros

Commit: 6a0a6fd

  • Improvement - VueUiIcon - Fix cropped numbers icon, add starFace icon, update paths for star and starFilled icons

Tue Nov 19 05:40:49 2024 +0100 - graphieros

Commit: 0b2e960

  • Dev environment - Update VueUiIcon testing arena

Tue Nov 19 05:40:03 2024 +0100 - graphieros

Commit: f14ede5

  • Fix - VueUiCarouselTable - Fix pauseOnHover not working

Tue Nov 19 05:39:25 2024 +0100 - graphieros

Commit: f65f21b

  • UserOptions atom - Add offsetX prop

Tue Nov 19 05:38:57 2024 +0100 - graphieros

Commit: e9dc65c

  • Internal lib - Fix bug in sanitizeArray causing string values to default to 0

Mon Nov 18 08:17:25 2024 +0100 - graphieros

Commit: 353f2d2

  • v2.3.98

Mon Nov 18 08:15:35 2024 +0100 - graphieros

Commit: a2bb970

  • Internal lib - Add vertical smooth line utility function

Mon Nov 18 08:15:07 2024 +0100 - graphieros

Commit: 54d1da6

  • Fix - VueUiScatter - Fix smooth path regression on vertical marginal bar

Mon Nov 18 06:31:20 2024 +0100 - graphieros

Commit: f2c7581

  • Improvement - VueUiXy - Expose seriesIndex and datapointIndex in plot-comment slot

Sun Nov 17 20:04:23 2024 +0100 - graphieros

Commit: 7534f40

  • v2.3.97

Sun Nov 17 20:04:04 2024 +0100 - graphieros

Commit: c7b555a

  • Internal lib - Improve smooth path generation

Sun Nov 17 19:46:57 2024 +0100 - graphieros

Commit: a4932ac

  • v2.3.96

Sun Nov 17 19:45:17 2024 +0100 - graphieros

Commit: c78b250

  • Internal lib - Improve smooth path generation

Sun Nov 17 16:07:22 2024 +0100 - graphieros

Commit: 4d753fe

  • Modification - VueUiIcon - Update chartAgePyramid icon

Sun Nov 17 07:12:30 2024 +0100 - graphieros

Commit: 8ea52e5

  • Improvement - VueUiQuickChart - Add stroke to marker circles in donut mode

Sun Nov 17 07:12:02 2024 +0100 - graphieros

Commit: 1659666

  • Improvement - VueUiDonut - Add stroke to marker circles

Sat Nov 16 11:13:08 2024 +0100 - graphieros

Commit: d962b9b

  • v2.3.95

Sat Nov 16 11:12:55 2024 +0100 - graphieros

Commit: 3e6ede8

  • Fix - VueUiDonut - Fix layout when only one serie is visible in polar mode

Sat Nov 16 10:53:41 2024 +0100 - graphieros

Commit: 28e8dc8

  • v2.3.94

Sat Nov 16 10:51:57 2024 +0100 - graphieros

Commit: 6143796

  • New feature - VueUiDonut - Add polar area display option; fix display bug in data table

Sat Nov 16 10:50:57 2024 +0100 - graphieros

Commit: c76b823

  • Dev environment - Update VueUiDonut testing arena

Sat Nov 16 10:50:38 2024 +0100 - graphieros

Commit: bf87a81

  • Config - Update VueUiDonut config

Sat Nov 16 10:50:18 2024 +0100 - graphieros

Commit: 896ba22

  • Internal lib - Add utility to create polar area paths

Sat Nov 16 10:38:38 2024 +0100 - graphieros

Commit: a518610

  • Types - Update VueUiDonutConfig type

Fri Nov 15 17:51:59 2024 +0100 - graphieros

Commit: 0a279bc

  • v2.3.93

Fri Nov 15 17:50:18 2024 +0100 - graphieros

Commit: 9027f38

  • Fix - VueUiWordCloud - Fix regression

Fri Nov 15 17:35:54 2024 +0100 - graphieros

Commit: fa4934b

  • v2.3.92

Fri Nov 15 17:33:56 2024 +0100 - graphieros

Commit: f1edec7

  • Update documentation

Fri Nov 15 17:33:38 2024 +0100 - graphieros

Commit: 903464f

  • Improvement - VueUiWordCloud - Add tooltip; improve zoom functionality

Fri Nov 15 17:33:13 2024 +0100 - graphieros

Commit: 8d0c508

  • Config - Update VueUiWordCloud config

Fri Nov 15 17:32:47 2024 +0100 - graphieros

Commit: e75100e

  • Dev environment - Update VueUiWordCloud testing arena

Fri Nov 15 17:32:22 2024 +0100 - graphieros

Commit: 30b4964

  • Types - Added tooltip types to VueUiWordCloudConfig

Fri Nov 15 11:01:52 2024 +0100 - graphieros

Commit: 19295a0

  • v2.3.91

Fri Nov 15 10:57:01 2024 +0100 - graphieros

Commit: 0a6296e

  • Fix - VueUiDonut - Remove excess % symbol in tooltip

Fri Nov 15 06:43:21 2024 +0100 - graphieros

Commit: 5392f08

  • Add package version desc element in svgs

Thu Nov 14 16:41:20 2024 +0100 - graphieros

Commit: fb1542f

  • v2.3.90

Thu Nov 14 16:39:39 2024 +0100 - graphieros

Commit: 514182c

  • Fix - VueUiSparkstackbar - Fix regression

Thu Nov 14 16:24:19 2024 +0100 - graphieros

Commit: d447282

  • v2.3.89

Thu Nov 14 16:22:28 2024 +0100 - graphieros

Commit: 2bf4418

  • Implement dynamic import of pdf and img deps

Thu Nov 14 16:21:48 2024 +0100 - graphieros

Commit: b606906

  • Improvement - VueUiXy - Dynamic import of pdf deps

Thu Nov 14 16:16:47 2024 +0800 - 2113ic

Commit: 2169aa2

  • Fix - VueUiSparkstackbar - Add fallback width calculation for proportion charts

Thu Nov 14 16:16:05 2024 +0800 - 2113ic

Commit: 62f87e0

  • Fix - VueUiSparkstackbar - Handle NaN values

Thu Nov 14 07:50:50 2024 +0100 - graphieros

Commit: 3eb958b

  • v2.3.88

Thu Nov 14 07:48:41 2024 +0100 - graphieros

Commit: a10ebd6

  • Slicer - Improve selection render

Thu Nov 14 07:23:34 2024 +0100 - graphieros

Commit: c9c5685

  • v2.3.87

Thu Nov 14 07:21:44 2024 +0100 - graphieros

Commit: a4388c5

  • Improvement - VueUiXy - Use improved smooth path generation algorithm to avoid dips

Thu Nov 14 07:21:00 2024 +0100 - graphieros

Commit: def55b7

  • Types - Update VueUiXyConfig type

Thu Nov 14 07:20:31 2024 +0100 - graphieros

Commit: bd8746c

  • Dev environment - Update VueUiXy testing arena

Thu Nov 14 07:20:09 2024 +0100 - graphieros

Commit: 3e84604

  • Slicer - Update minimap

Thu Nov 14 07:19:47 2024 +0100 - graphieros

Commit: 57eb50c

  • Config - Update VueUiXy config

Thu Nov 14 07:19:20 2024 +0100 - graphieros

Commit: af6ddae

  • Internal lib - Use monotone cubic interpolation to create smooth paths without dips

Wed Nov 13 06:47:26 2024 +0100 - graphieros

Commit: 75d9b50

  • v2.3.86

Wed Nov 13 06:45:03 2024 +0100 - graphieros

Commit: 0188f10

  • Improvement - Add optional position config to user options menu

Wed Nov 13 06:44:15 2024 +0100 - graphieros

Commit: b738cdc

  • Dev environment - Update testing arena

Wed Nov 13 06:43:29 2024 +0100 - graphieros

Commit: ea8fb92

  • UserOptions - Add optional menu position

Wed Nov 13 06:43:01 2024 +0100 - graphieros

Commit: 3420294

  • Config - Update config

Wed Nov 13 06:42:21 2024 +0100 - graphieros

Commit: 3973dec

  • Types - Update ChartUserOptions type

Tue Nov 12 07:58:35 2024 +0100 - graphieros

Commit: f88f240

  • v2.3.85

Tue Nov 12 07:58:23 2024 +0100 - graphieros

Commit: 642e7a6

  • Fix - Set svg bg color as transparent

Tue Nov 12 07:54:09 2024 +0100 - graphieros

Commit: 81cd041

  • Dev environment - Update testing arena

Mon Nov 11 18:05:39 2024 +0100 - graphieros

Commit: 927a954

  • v2.3.84

Mon Nov 11 18:03:29 2024 +0100 - graphieros

Commit: 51fbf9f

  • Improvement - VueUiXy - Add optional sum in data table

Mon Nov 11 18:02:59 2024 +0100 - graphieros

Commit: f684218

  • Config - Update VueUiXy config

Mon Nov 11 18:02:34 2024 +0100 - graphieros

Commit: 68cad8f

  • Dev environment - Update VueUiXy testing arena

Mon Nov 11 18:02:16 2024 +0100 - graphieros

Commit: 983721f

  • Types - Update VueUiXy type

Mon Nov 11 15:39:51 2024 +0100 - graphieros

Commit: 0c9a010

  • v2.3.83

Mon Nov 11 15:38:08 2024 +0100 - graphieros

Commit: 067b07a

  • Improvement - VueUiXy - Add prefix and suffix optional dataset serie attribute

Mon Nov 11 10:33:01 2024 +0100 - graphieros

Commit: d030471

  • v2.3.82

Mon Nov 11 10:32:50 2024 +0100 - graphieros

Commit: 946e0b4

  • Fix - VueUiDonutEvolution - Fix donut markers too short in hover mode

Mon Nov 11 10:16:45 2024 +0100 - graphieros

Commit: 24df781

  • v2.3.81

Mon Nov 11 10:16:25 2024 +0100 - graphieros

Commit: 1043d1c

  • Fix - VueUiQuickChart - Fix marker links too short in donut mode

Mon Nov 11 08:03:34 2024 +0100 - graphieros

Commit: aeeabe0

  • v2.3.80

Mon Nov 11 07:38:50 2024 +0100 - graphieros

Commit: d814093

  • Improvement - VueUiNestedDonuts - Improve gradient rendering

Mon Nov 11 07:38:26 2024 +0100 - graphieros

Commit: f2ac0d9

  • Improvement - VueUiDonut - Force minimum donut thickness to user friendly size

Sun Nov 10 19:59:44 2024 +0100 - graphieros

Commit: 18352c4

  • v2.3.79

Sun Nov 10 19:44:16 2024 +0100 - graphieros

Commit: 8e09302

  • v2.3.78

Sun Nov 10 19:43:41 2024 +0100 - graphieros

Commit: df7eef0

  • Fix - VueUiDonut - Fix bleeding gradient on transparent background

Sun Nov 10 19:43:16 2024 +0100 - graphieros

Commit: f05829a

  • Fix - VueUiGauge - Fix bleeding gradient on transparent background

Sat Nov 9 12:06:04 2024 +0100 - graphieros

Commit: 84ae1c5

  • v2.3.77

Sat Nov 9 12:01:19 2024 +0100 - graphieros

Commit: 355ef8e

  • Improvement - Add color alpha support

Sat Nov 9 12:00:21 2024 +0100 - graphieros

Commit: 89e7fee

  • Dev environment - Update testing arena

Sat Nov 9 11:59:27 2024 +0100 - graphieros

Commit: 4f6eae7

  • Internal lib - Update color utils with alpha support

Sat Nov 9 11:58:33 2024 +0100 - graphieros

Commit: 49349b5

  • Update cy fixtures

Thu Nov 7 20:09:50 2024 +0100 - graphieros

Commit: 980cc99

  • v2.3.76

Thu Nov 7 20:08:00 2024 +0100 - graphieros

Commit: e52d99c

  • Fix - VueUiCarouselTable - Fix tr offset when resizing animating table

Wed Nov 6 20:11:15 2024 +0000 - dependabot[bot]

Commit: bc32bf5

  • Bump happy-dom from 15.10.1 to 15.10.2

Wed Nov 6 15:44:46 2024 +0000 - dependabot[bot]

Commit: ac3575d

  • Bump happy-dom from 13.3.8 to 15.10.1

Wed Nov 6 12:00:18 2024 +0100 - graphieros

Commit: 0bd9058

  • v2.3.75

Wed Nov 6 09:59:18 2024 +0100 - graphieros

Commit: b2a1e24

  • Update component reactivity

Wed Nov 6 09:58:40 2024 +0100 - graphieros

Commit: 82d987d

  • Dev environment - Update testing arena

Wed Nov 6 09:58:26 2024 +0100 - graphieros

Commit: b393f37

  • Dev environment - Update testing arena

Tue Nov 5 06:29:43 2024 +0100 - graphieros

Commit: 8ce502e

  • v2.3.74

Tue Nov 5 06:27:51 2024 +0100 - graphieros

Commit: ef496c9

  • Fix - VueUiVerticalBar - Fix data labels of parent categories

Tue Nov 5 06:27:12 2024 +0100 - graphieros

Commit: eb817c1

  • Dev environment - Update VueUiVerticalBar testing arena

Mon Nov 4 18:49:17 2024 +0100 - graphieros

Commit: 56cc569

  • v2.3.73

Mon Nov 4 18:45:30 2024 +0100 - graphieros

Commit: 655b3f0

  • Fix - VueUiXy - Fix corrector value

Mon Nov 4 18:14:05 2024 +0100 - graphieros

Commit: 157c9d9

  • v2.3.72

Mon Nov 4 18:11:57 2024 +0100 - graphieros

Commit: f4802a4

  • Fix - Fix missing type

Mon Nov 4 18:08:25 2024 +0100 - graphieros

Commit: 1bb5db0

  • Fix - VueUiXy - Fix scale issues when min scale is same as max scale

Mon Nov 4 16:43:57 2024 +0000 - cyril

Commit: a0fe959

  • Fix - casing typo for the SparkStackbar types config and datesetitem

Mon Nov 4 17:29:39 2024 +0100 - graphieros

Commit: f3993f4

  • v2.3.71

Mon Nov 4 17:26:37 2024 +0100 - graphieros

Commit: fc3cb93

  • Fix - VueUiXy - Fix various regressions

Mon Nov 4 11:38:57 2024 +0100 - graphieros

Commit: f34434b

  • v2.3.70

Mon Nov 4 11:38:40 2024 +0100 - graphieros

Commit: 1033058

  • Fix - VueUiWheel - Fix reactivity issues

Mon Nov 4 11:38:23 2024 +0100 - graphieros

Commit: 004beee

  • Fix - VueUiTiremarks - Fix reactivity issues

Mon Nov 4 06:16:53 2024 +0100 - graphieros

Commit: a20e8f7

  • v2.3.69

Mon Nov 4 06:15:02 2024 +0100 - graphieros

Commit: d28bb6c

  • Fix - VueUiOnion - Fix incorrect path calculation

Mon Nov 4 06:14:23 2024 +0100 - graphieros

Commit: 3b2af89

  • Dev environment - Update VueUiOnion testing arena

Sun Nov 3 23:11:18 2024 +0000 - cyril

Commit: 81466c9

  • Fix - casing typo in the ArenaVueUiStackbar filename

Sun Nov 3 04:05:09 2024 +0100 - graphieros

Commit: c8c561c

  • v2.3.68

Sun Nov 3 04:03:12 2024 +0100 - graphieros

Commit: 8532e27

  • Tooltip - Use backdrop filter

Sun Nov 3 03:51:49 2024 +0100 - graphieros

Commit: eb86cd7

  • Tooltip - Use backdrop filter

Sat Nov 2 16:29:40 2024 +0100 - graphieros

Commit: 8b7c4ce

  • v2.3.67

Sat Nov 2 16:27:49 2024 +0100 - graphieros

Commit: 02c69b2

  • Improve minimap layout and add reactivity with parent chart upon selection

Sat Nov 2 16:27:14 2024 +0100 - graphieros

Commit: 7ad0444

  • Dev environment - Update testing arena

Sat Nov 2 16:26:55 2024 +0100 - graphieros

Commit: 8edd8ef

  • Types - Update ZoomMinimap type

Sat Nov 2 16:26:35 2024 +0100 - graphieros

Commit: a860625

  • Config - Update config

Sat Nov 2 16:26:18 2024 +0100 - graphieros

Commit: f866b56

  • Slicer - Improve minimap

Sat Nov 2 11:18:46 2024 +0100 - graphieros

Commit: a40f16d

  • v2.3.66

Sat Nov 2 11:10:28 2024 +0100 - graphieros

Commit: ed5e5b0

  • v2.3.65

Sat Nov 2 11:08:05 2024 +0100 - graphieros

Commit: a8e5d3d

  • v2.3.64

Sat Nov 2 11:06:11 2024 +0100 - graphieros

Commit: daaa327

  • Remove log

Sat Nov 2 11:04:58 2024 +0100 - graphieros

Commit: e374f82

  • v2.3.63

Sat Nov 2 11:03:12 2024 +0100 - graphieros

Commit: 3de836f

  • Improvement - Sanitize datasets to process charts with unprocessable values

Sat Nov 2 10:46:51 2024 +0100 - graphieros

Commit: e18d8a6

  • v2.3.62

Sat Nov 2 10:44:51 2024 +0100 - graphieros

Commit: 0bd7146

  • Improvement - Sanitize datasets to process charts with unprocessable values

Sat Nov 2 10:43:30 2024 +0100 - graphieros

Commit: 4f4df10

  • Update errors

Sat Nov 2 10:43:17 2024 +0100 - graphieros

Commit: b6057ea

  • Internal lib - Update lib with sanitized processes

Sat Nov 2 10:42:23 2024 +0100 - graphieros

Commit: 063accc

  • Dev environment - Update testing arena

Fri Nov 1 10:05:52 2024 +0100 - graphieros

Commit: faccfe9

  • v2.3.61

Fri Nov 1 10:04:14 2024 +0100 - graphieros

Commit: b51e225

  • Slicer - revert

Fri Nov 1 09:59:30 2024 +0100 - graphieros

Commit: ed73ba7

  • v2.3.60

Fri Nov 1 09:58:27 2024 +0100 - graphieros

Commit: e434b0f

  • v2.3.59

Fri Nov 1 09:55:26 2024 +0100 - graphieros

Commit: f9149fa

  • Improvement - VueUiHeatmap - Add config options to rotate x labels and show only at modulo

Fri Nov 1 09:54:34 2024 +0100 - graphieros

Commit: 25f4741

  • Dev environment - Update VueUiHeatmap testing arena

Fri Nov 1 09:54:13 2024 +0100 - graphieros

Commit: ac4152c

  • Types - Update VueUiHeatmapConfig type

Fri Nov 1 09:53:57 2024 +0100 - graphieros

Commit: 766565f

  • Config - Update VueUiHeatmap config

Fri Nov 1 09:52:57 2024 +0100 - graphieros

Commit: f5bb20a

  • Slicer - Set additional bottom padding in minimap mode

Thu Oct 31 20:21:35 2024 +0100 - graphieros

Commit: 07ed4f9

  • v2.3.58

Thu Oct 31 20:19:44 2024 +0100 - graphieros

Commit: 51b01b6

  • Slicer - Adjustments

Thu Oct 31 20:06:20 2024 +0100 - graphieros

Commit: dc0ee1e

  • v2.3.57

Thu Oct 31 20:00:30 2024 +0100 - graphieros

Commit: e42d3a2

  • Slicer - Improved displays with or without minimap

Thu Oct 31 16:04:55 2024 +0100 - graphieros

Commit: 060f22d

  • v2.3.56

Thu Oct 31 15:57:19 2024 +0100 - graphieros

Commit: f6ab5c8

  • Improvement - VueUiQuickChart - Add optional minimap to zoom inputs

Thu Oct 31 15:56:24 2024 +0100 - graphieros

Commit: d241799

  • Types - Update VueUiQuickChartConfig type

Thu Oct 31 15:55:30 2024 +0100 - graphieros

Commit: f729b26

  • Dev environment - Update VueUiQuickChart testing arena

Thu Oct 31 15:53:56 2024 +0100 - graphieros

Commit: 1127a31

  • Config - Update VueUiQuickChart config

Thu Oct 31 15:52:49 2024 +0100 - graphieros

Commit: 9b52734

  • Slicer - Set reset button zIndex

Thu Oct 31 11:43:07 2024 +0100 - graphieros

Commit: 92ae621

  • v2.3.55

Thu Oct 31 11:40:06 2024 +0100 - graphieros

Commit: 23165d7

  • Slicer - Adjustments

Thu Oct 31 11:39:28 2024 +0100 - graphieros

Commit: dc4da35

  • Internal lib - Avoid NaN values in path creation

Thu Oct 31 11:19:46 2024 +0100 - graphieros

Commit: b4336dd

  • v2.3.54

Thu Oct 31 11:16:55 2024 +0100 - graphieros

Commit: 51a1c58

  • Slicer - Adjustments

Thu Oct 31 11:08:55 2024 +0100 - graphieros

Commit: b3a63ea

  • v2.3.53

Thu Oct 31 11:06:59 2024 +0100 - graphieros

Commit: 7b2c51c

  • v2.3.52

Thu Oct 31 11:05:29 2024 +0100 - graphieros

Commit: c1fd9de

  • Slicer - Adjustments

Thu Oct 31 10:54:53 2024 +0100 - graphieros

Commit: 9ad4394

  • v2.3.51

Thu Oct 31 10:53:22 2024 +0100 - graphieros

Commit: 9d34fe7

  • Slicer - Adjustments

Thu Oct 31 10:53:02 2024 +0100 - graphieros

Commit: 830dd32

  • Config - Update minimap config

Thu Oct 31 10:52:44 2024 +0100 - graphieros

Commit: bbaafc1

  • Dev environment - Update VueUiXy testing arena

Thu Oct 31 10:39:25 2024 +0100 - graphieros

Commit: 1ddcad2

  • v2.3.50

Thu Oct 31 10:37:59 2024 +0100 - graphieros

Commit: c1c1e2e

  • Improvement - VueUiXy - Add optional minimap to zoom inputs

Thu Oct 31 10:37:46 2024 +0100 - graphieros

Commit: 03b9171

  • Slicer - Improve slicer layout

Thu Oct 31 10:37:27 2024 +0100 - graphieros

Commit: e734efd

  • Dev environment - Update VueUiXy testing arena

Thu Oct 31 10:36:40 2024 +0100 - graphieros

Commit: fe0519c

  • Types - Update ZoomMinimap type

Thu Oct 31 10:36:17 2024 +0100 - graphieros

Commit: 75caece

  • Config - Update minimap config

Thu Oct 31 08:41:50 2024 +0100 - graphieros

Commit: ceb3bd6

  • v2.3.49

Thu Oct 31 08:38:43 2024 +0100 - graphieros

Commit: dd8e31e

  • Improvement - VueUiXy - Add optional minimap to zoom inputs

Thu Oct 31 08:38:27 2024 +0100 - graphieros

Commit: d7af809

  • Types - Update ZoomMinimap type

Thu Oct 31 08:38:08 2024 +0100 - graphieros

Commit: 0073949

  • Dev environment - Update VueUiXy testing arena

Thu Oct 31 08:37:52 2024 +0100 - graphieros

Commit: c199fbe

  • Slicer - Add line color prop

Thu Oct 31 08:37:40 2024 +0100 - graphieros

Commit: f662615

  • Config - Update minimap config

Thu Oct 31 08:24:46 2024 +0100 - graphieros

Commit: b6c1aae

  • v2.3.48

Thu Oct 31 08:17:36 2024 +0100 - graphieros

Commit: 538e747

  • Improvement - VueUiXy - Add optional minimap to zoom inputs

Thu Oct 31 08:17:07 2024 +0100 - graphieros

Commit: d096547

  • Types - Update VueUiXyConfig type with minimap

Thu Oct 31 08:16:41 2024 +0100 - graphieros

Commit: 0f8c220

  • Config - Add minimap to VueUiXy config

Thu Oct 31 08:16:01 2024 +0100 - graphieros

Commit: 99d1b17

  • Dev environment - Update VueUiXy testing arena

Thu Oct 31 08:15:37 2024 +0100 - graphieros

Commit: 8c26945

  • Slicer - Add optional minimap

Wed Oct 30 17:48:53 2024 +0100 - graphieros

Commit: f9157d2

  • v2.3.47

Wed Oct 30 17:47:29 2024 +0100 - graphieros

Commit: b721909

  • Improvement - VueUiDonut - Improve responsive proportions resizing

Mon Oct 28 17:58:24 2024 +0100 - graphieros

Commit: 2077cae

  • v2.3.46

Mon Oct 28 17:56:49 2024 +0100 - graphieros

Commit: 6d27d05

  • Improvement - VueUiStackbar - Add scaleMin and scaleMax config attributes to force scale

Mon Oct 28 17:56:17 2024 +0100 - graphieros

Commit: b9bb258

  • Types - Update VueUiStackbarConfig type

Mon Oct 28 17:55:58 2024 +0100 - graphieros

Commit: e860216

  • Config - Update VueUiStackbar config

Mon Oct 28 17:55:41 2024 +0100 - graphieros

Commit: d511073

  • Dev environment - Update VueUiStackbar testing arena

Sun Oct 27 16:19:48 2024 +0100 - graphieros

Commit: 2b4bc6e

  • v2.3.45

Sun Oct 27 16:18:17 2024 +0100 - graphieros

Commit: e07294e

  • Improvement - VueUiStackbar - Add orientation config option to display bars horizontally or vertically

Sun Oct 27 16:16:36 2024 +0100 - graphieros

Commit: 77721f1

  • Types - Update VueUiStackbarConfig type

Sun Oct 27 16:16:20 2024 +0100 - graphieros

Commit: 374de0c

  • Config - Add orientation attribute to VueUiStackbar config

Sun Oct 27 16:15:44 2024 +0100 - graphieros

Commit: 45a7608

  • Dev environment - Update VueUiStackbar testing arena

Sun Oct 27 16:15:16 2024 +0100 - graphieros

Commit: 7a31ae9

  • Dev environment - Update main testing hub

Sat Oct 26 11:50:51 2024 +0200 - graphieros

Commit: d931efa

  • v2.3.44

Sat Oct 26 11:49:01 2024 +0200 - graphieros

Commit: fe13ccd

  • Improvement - VueUiSparkline - Add responsive feature

Sat Oct 26 11:42:08 2024 +0200 - graphieros

Commit: 52dccb0

  • Improvement - VueUiSparkline - Add responsive config attribute

Sat Oct 26 11:41:08 2024 +0200 - graphieros

Commit: 0c1faac

  • Update readme

Sat Oct 26 11:38:59 2024 +0200 - graphieros

Commit: 554f455

  • Types - Update VueUiSparklineConfig type

Sat Oct 26 11:37:43 2024 +0200 - graphieros

Commit: 0b79e44

  • Config - Update VueUiSparkline config

Sat Oct 26 11:37:26 2024 +0200 - graphieros

Commit: 5f738e6

  • Dev environment - Update VueUiSparkline testing arena

Fri Oct 25 15:54:28 2024 +0200 - graphieros

Commit: 0b1aec2

  • v2.3.43

Fri Oct 25 15:53:08 2024 +0200 - graphieros

Commit: a4710b3

  • Remove log

Fri Oct 25 15:48:35 2024 +0200 - graphieros

Commit: 923d247

  • v2.3.42

Fri Oct 25 15:46:27 2024 +0200 - graphieros

Commit: c91fffd

  • Remove dupe cy data attr

Fri Oct 25 15:41:40 2024 +0200 - graphieros

Commit: 4bed743

  • Improvement - VueUiXy - Add scaleMin and scaleMax yAxis scale overriding config attributes

Fri Oct 25 15:40:03 2024 +0200 - graphieros

Commit: 31ad366

  • Dev environment - Update VueUiXy testing arena

Fri Oct 25 15:39:43 2024 +0200 - graphieros

Commit: 6514096

  • Types - Update VueUiXyConfig type

Fri Oct 25 15:39:21 2024 +0200 - graphieros

Commit: ebd95b6

  • Config - Add scaleMin and scaleMax config attributes in VueUiXyConfig

Fri Oct 25 15:37:52 2024 +0200 - graphieros

Commit: 5cf82b3

  • Internal lib - Add utility function to check existence of nested attr in obj

Fri Oct 25 08:00:30 2024 +0200 - graphieros

Commit: 006091a

  • v2.3.41

Fri Oct 25 07:58:58 2024 +0200 - graphieros

Commit: 394548a

  • Types - Fix typos

Fri Oct 25 06:56:25 2024 +0200 - graphieros

Commit: 675fc6e

  • v2.3.40

Fri Oct 25 06:54:49 2024 +0200 - graphieros

Commit: 1992b52

  • Dev environment - Update VueUiXy testing arena

Fri Oct 25 06:54:28 2024 +0200 - graphieros

Commit: 9428fe9

  • Improvement - VueUiXy - Show extremes on scale, add optional frame, support multiple highlight areas, add optional vertical offset positioning

Fri Oct 25 06:51:16 2024 +0200 - graphieros

Commit: eac5e00

  • Types - Update VueUiXyConfig type

Fri Oct 25 06:50:24 2024 +0200 - graphieros

Commit: d05d380

  • Dev environment - Update VueUiXy testing arena

Fri Oct 25 06:49:48 2024 +0200 - graphieros

Commit: 4c5ffed

  • Config - Update VueUiXy default config

Fri Oct 25 06:43:44 2024 +0200 - graphieros

Commit: e09ed71

  • Internal lib - Add calculateNiceScaleWithExactExtremes utility function

Thu Oct 24 08:55:11 2024 +0200 - graphieros

Commit: ae33630

  • v2.3.39

Thu Oct 24 08:53:47 2024 +0200 - graphieros

Commit: fecfa27

  • Fix - VueUiKpi - Fix rounding error

Thu Oct 24 08:51:24 2024 +0200 - graphieros

Commit: 3c62ff3

  • v2.3.38

Thu Oct 24 08:49:25 2024 +0200 - graphieros

Commit: c0ebd70

  • Fix - VueUiKpi - Fix rounding error

Thu Oct 24 08:08:16 2024 +0200 - graphieros

Commit: a0b9ea5

  • v2.3.37

Thu Oct 24 08:06:31 2024 +0200 - graphieros

Commit: c1ed935

  • Types - Fix type errors

Thu Oct 24 08:06:22 2024 +0200 - graphieros

Commit: 7a2c7b2

  • Config - Fix config mistakes

Thu Oct 24 07:50:23 2024 +0200 - graphieros

Commit: 9d87bd2

  • v2.3.36

Thu Oct 24 07:46:43 2024 +0200 - graphieros

Commit: 77d8096

  • Config - Fix config mistakes

Thu Oct 24 07:46:26 2024 +0200 - graphieros

Commit: 8045bf3

  • Types - Fix type errors

Wed Oct 23 17:48:12 2024 +0200 - graphieros

Commit: 2ea93ab

  • v2.3.35

Wed Oct 23 17:46:17 2024 +0200 - graphieros

Commit: 83a3aea

  • Improvement - VueUiKpi - Add option to display value as analog numbers

Wed Oct 23 17:45:52 2024 +0200 - graphieros

Commit: 6c261b5

  • Dev environment - Update VueUiKpi testing arena

Wed Oct 23 17:45:27 2024 +0200 - graphieros

Commit: dc352bc

  • Types - Update VueUiKpiConfig type

Wed Oct 23 17:45:11 2024 +0200 - graphieros

Commit: 37f48f4

  • Config - Update VueUiKpi config

Tue Oct 22 16:17:53 2024 +0200 - graphieros

Commit: 9b73048

  • v2.3.34

Tue Oct 22 16:16:36 2024 +0200 - graphieros

Commit: 5dbb089

  • Improvement - VueUiVerticalBar - Add support for negative values

Tue Oct 22 15:55:56 2024 +0200 - graphieros

Commit: f9fc06e

  • v2.3.33

Tue Oct 22 15:54:35 2024 +0200 - graphieros

Commit: f1987ab

  • Improvement - VueUiStackbar - Add support for negative values

Tue Oct 22 15:10:14 2024 +0200 - graphieros

Commit: 1886609

  • v2.3.32

Tue Oct 22 15:08:49 2024 +0200 - graphieros

Commit: 5b45b8b

  • Improvement - VueUiVerticalBar - Add support for negative values

Tue Oct 22 15:08:32 2024 +0200 - graphieros

Commit: 3f7b412

  • Improvement - VueUiStackbar - Add support for negative values

Tue Oct 22 10:01:42 2024 +0200 - graphieros

Commit: 35d248f

  • Dev environment - Updated VueUiStackbar testing arena

Mon Oct 21 11:31:49 2024 +0200 - graphieros

Commit: 7f50d16

  • v2.3.31

Mon Oct 21 11:28:22 2024 +0200 - graphieros

Commit: 23f6464

  • Fix - VueUiWaffle - Fix regression causing #cell slot to be unusable

Mon Oct 21 11:27:29 2024 +0200 - graphieros

Commit: bd7ceeb

  • New feature - VueUiParallelCoordinatePlot - Add formatters

Mon Oct 21 08:39:43 2024 +0200 - graphieros

Commit: ede8acb

  • v2.3.30

Mon Oct 21 08:37:37 2024 +0200 - graphieros

Commit: bccfe1b

  • Update formatter type

Mon Oct 21 08:19:12 2024 +0200 - graphieros

Commit: a2d6251

  • v2.3.29

Mon Oct 21 08:16:19 2024 +0200 - graphieros

Commit: 5b37574

  • Update docs

Mon Oct 21 08:06:25 2024 +0200 - graphieros

Commit: 7aba60e

  • Update tests

Mon Oct 21 07:55:17 2024 +0200 - graphieros

Commit: abee80a

  • Improvement - VueUiStackbar - Add formatters

Mon Oct 21 07:41:44 2024 +0200 - graphieros

Commit: d4690c9

  • Improvement - VueUiKpi - Add formatters

Mon Oct 21 07:38:00 2024 +0200 - graphieros

Commit: af2c3f6

  • Improvement - VueUiGizmo - Add formatters

Mon Oct 21 07:37:36 2024 +0200 - graphieros

Commit: 073ebfc

  • Update formatter

Mon Oct 21 07:37:09 2024 +0200 - graphieros

Commit: 2ea1e9f

  • Update formatter

Sun Oct 20 19:50:42 2024 +0200 - graphieros

Commit: 5a4f5ed

  • Update formatter

Sun Oct 20 19:38:22 2024 +0200 - graphieros

Commit: 456490f

  • Update formatter

Sun Oct 20 19:37:28 2024 +0200 - graphieros

Commit: c5f464a

  • Update formatter

Sun Oct 20 19:32:46 2024 +0200 - graphieros

Commit: 167a5e4

  • Update formatter

Sun Oct 20 19:28:05 2024 +0200 - graphieros

Commit: e196ef2

  • Update formatter

Sun Oct 20 18:19:28 2024 +0200 - graphieros

Commit: 83af083

  • Update formatter

Sun Oct 20 18:16:10 2024 +0200 - graphieros

Commit: a0b5ecc

  • Update formatter

Sun Oct 20 18:08:35 2024 +0200 - graphieros

Commit: 80154e3

  • Improve formatter to pass config too

Sun Oct 20 17:18:59 2024 +0200 - graphieros

Commit: e915077

  • Improvement - VueUiFlow - Add formatters

Sun Oct 20 17:14:10 2024 +0200 - graphieros

Commit: 6bfefac

  • Improvement - VueUiXyCanvas - Add formatters

Sun Oct 20 16:59:25 2024 +0200 - graphieros

Commit: 71fd073

  • Improvement - VueUiTableSparkline - Add formatters

Sun Oct 20 16:49:46 2024 +0200 - graphieros

Commit: 73c95b9

  • Improvement - VueUi3dBar - Add formatters

Sun Oct 20 16:36:41 2024 +0200 - graphieros

Commit: a416171

  • Improvement - VueUiDumbbell - Add formatters

Sun Oct 20 16:29:27 2024 +0200 - graphieros

Commit: ad1fd28

  • Improvement - VueUiStripPlot - Add formatters

Sun Oct 20 16:22:38 2024 +0200 - graphieros

Commit: 00faf99

  • Improvement - VueUiGalaxy - Add formatters

Sun Oct 20 16:12:28 2024 +0200 - graphieros

Commit: 801d9eb

  • Improvement - VueUiNestedDonuts - Add formatters

Sun Oct 20 15:57:10 2024 +0200 - graphieros

Commit: 2a6e42c

  • Improvement - VueUiMoodRadar - Add formatters

Sun Oct 20 12:04:30 2024 +0200 - graphieros

Commit: 7f81300

  • Improvement - VueUiDonutEvolution - Add formatters

Sun Oct 20 11:51:42 2024 +0200 - graphieros

Commit: c9e8f6a

  • Improvement - VueUiRings - Add formatters

Sun Oct 20 11:41:40 2024 +0200 - graphieros

Commit: 5075488

  • Improvement - VueUiThermometer - Add formatters

Sun Oct 20 11:35:56 2024 +0200 - graphieros

Commit: 10f2f6a

  • Improvement - VueUiAgePyramid - Add formatters

Sun Oct 20 11:20:29 2024 +0200 - graphieros

Commit: 382aee5

  • Improvement - VueUiQuickChart - Add formatters

Sun Oct 20 10:57:25 2024 +0200 - graphieros

Commit: 9957a80

  • Improvement - VueUiSparkTrend - Add formatters

Sun Oct 20 10:52:54 2024 +0200 - graphieros

Commit: d32fbfc

  • Improvement - VueUiSparkgauge - Add formatters

Sun Oct 20 10:47:36 2024 +0200 - graphieros

Commit: 520ce40

  • Improvement - VueUiSparkHistogram - Add formatters

Sun Oct 20 10:34:53 2024 +0200 - graphieros

Commit: ad6fb8a

  • Improvement - VueUiSparkStackbar - Add formatters

Sun Oct 20 10:28:56 2024 +0200 - graphieros

Commit: a6d8524

  • Improvement - VueUiSparkline - Add formatters

Sun Oct 20 10:17:00 2024 +0200 - graphieros

Commit: 88fdf86

  • Improvement - VueUiScatter - Add formatters

Sun Oct 20 09:52:35 2024 +0200 - graphieros

Commit: f8684f7

  • Improvement - VueUiHeatmap - Add formatters

Sun Oct 20 09:42:23 2024 +0200 - graphieros

Commit: e29ef5e

  • Improvement - VueUiVerticalBar - Add formatters

Sun Oct 20 09:19:54 2024 +0200 - graphieros

Commit: 306018e

  • Improvement - VueUiOnion - Add formatters

Sun Oct 20 08:59:02 2024 +0200 - graphieros

Commit: 7c1badf

  • Improvement - VueUiChestnut - Add formatters

Sun Oct 20 08:15:20 2024 +0200 - graphieros

Commit: 3bd6a29

  • Improvement - VueUiTiremarks - Add formatters

Sun Oct 20 07:51:41 2024 +0200 - graphieros

Commit: 3bbc98d

  • Improvement - VueUiWheel - Add formatters

Sun Oct 20 07:43:24 2024 +0200 - graphieros

Commit: 3e1dd30

  • Improvement - VueUiGauge - Add formatters

Sun Oct 20 07:32:55 2024 +0200 - graphieros

Commit: 161e01b

  • Improvement - VueUiQuadrant - Add formatters

Sun Oct 20 06:58:34 2024 +0200 - graphieros

Commit: cc0f6a4

  • Improvement - VueUiSparkbar & VueUiRadar - Add formatters

Sun Oct 20 06:18:29 2024 +0200 - graphieros

Commit: ffbc85e

  • Improvement - VueUiWaffle - Add formatters

Sun Oct 20 00:05:50 2024 +0200 - graphieros

Commit: 92c8e42

  • Improvement - VueUiTreemap - Add formatters

Sat Oct 19 23:44:54 2024 +0200 - graphieros

Commit: abf5239

  • Improvement - VueUiXy - Add formatters

Sat Oct 19 22:54:38 2024 +0200 - graphieros

Commit: 8174e07

  • Fix - VueUiDonut - Fix svg console errors when total is 0

Sat Oct 19 20:14:42 2024 +0200 - graphieros

Commit: 00ff7e4

  • Modification - Remove locale now useless

Sat Oct 19 20:04:58 2024 +0200 - graphieros

Commit: 13afa83

  • Improvement - VueUiDonut - Add formatters

Sat Oct 19 16:26:20 2024 +0200 - graphieros

Commit: 1912269

  • Update tests

Sat Oct 19 16:20:54 2024 +0200 - graphieros

Commit: 64f00e3

  • WIP - Formatter feature

Sat Oct 19 09:47:16 2024 +0200 - graphieros

Commit: 5f8151b

  • v2.3.28

Sat Oct 19 09:45:03 2024 +0200 - graphieros

Commit: 0816136

  • Update docs

Sat Oct 19 09:42:21 2024 +0200 - graphieros

Commit: 3eeeed6

  • New feature - VueUiWordCloud - Add optional zoom feature

Sat Oct 19 09:41:37 2024 +0200 - graphieros

Commit: 9bf0fd0

  • Dev environment - Update VueUiWordCloud testing arena

Sat Oct 19 09:41:13 2024 +0200 - graphieros

Commit: b2b1a1b

  • Types - Update VueUiWordCloudConfig type

Sat Oct 19 09:39:41 2024 +0200 - graphieros

Commit: f7c7410

  • Add MonoSlicer internal component

Sat Oct 19 09:39:26 2024 +0200 - graphieros

Commit: 3c8344d

  • Config - Add zoom feature to VueUiWordCloud

Thu Oct 17 16:11:38 2024 +0200 - graphieros

Commit: 03fec16

  • v2.3.27

Thu Oct 17 15:56:43 2024 +0200 - graphieros

Commit: 1e6d728

  • New feature - VueUiStackbar - Add new component

Thu Oct 17 15:56:18 2024 +0200 - graphieros

Commit: df339a9

  • Types - Add types for VueUiStackbar component

Thu Oct 17 15:55:56 2024 +0200 - graphieros

Commit: 012f753

  • Universal component - Add VueUiStackbar support

Thu Oct 17 15:55:37 2024 +0200 - graphieros

Commit: de5e4d0

  • Config - Add VueUiStackbar config

Thu Oct 17 15:54:58 2024 +0200 - graphieros

Commit: 2f23b4d

  • Themes - Add VueUiStackbar themes

Thu Oct 17 15:54:40 2024 +0200 - graphieros

Commit: fd4065d

  • Build - Add VueUiStackbar export

Thu Oct 17 15:52:51 2024 +0200 - graphieros

Commit: a7d018b

  • Dev environment - Update VueUiIcon testing arena

Thu Oct 17 15:52:31 2024 +0200 - graphieros

Commit: 685df49

  • New feature - VueUiIcon - Add chartStackbar icon

Thu Oct 17 15:51:57 2024 +0200 - graphieros

Commit: 44e2cdd

  • Dev environment - Add VueUiStackbar testing arena

Thu Oct 17 15:50:34 2024 +0200 - graphieros

Commit: 94fee7b

  • Update docs

Thu Oct 17 15:50:22 2024 +0200 - graphieros

Commit: 260ce18

  • Update internal library

Tue Oct 15 18:16:15 2024 +0200 - graphieros

Commit: 1253076

  • v2.3.26

Tue Oct 15 18:14:51 2024 +0200 - graphieros

Commit: 904a60e

  • Fix - VueUiWaffle - Fix bad proportion calculations

Mon Oct 14 07:02:15 2024 +0200 - graphieros

Commit: ff1c8bc

  • v2.3.25

Mon Oct 14 07:00:48 2024 +0200 - graphieros

Commit: 61e4107

  • Fix - VueUiKpi - Fix dataset reactivity issue

Mon Oct 14 07:00:23 2024 +0200 - graphieros

Commit: b1c496e

  • Dev environment - Added VueUiKpi testing arena

Sun Oct 13 16:46:54 2024 +0200 - graphieros

Commit: 34f81cb

  • v2.3.24

Sun Oct 13 16:45:31 2024 +0200 - graphieros

Commit: 7b7e67e

  • Improvement - VueUiCarouselTable - Hide rows when out of view on top

Sat Oct 12 16:28:25 2024 +0200 - graphieros

Commit: 2d1ede1

  • v2.3.23

Sat Oct 12 16:27:58 2024 +0200 - graphieros

Commit: fd6b7ec

  • Fix typo in .d.ts

Wed Oct 9 17:47:15 2024 +0200 - graphieros

Commit: 029c26d

  • v2.3.22

Wed Oct 9 17:41:12 2024 +0200 - graphieros

Commit: 666c8ab

  • Improvement - VueUiAgePyramid - Add tooltip positioning config options

Wed Oct 9 17:41:00 2024 +0200 - graphieros

Commit: c14f702

  • Improvement - VueUiCandlestick - Add tooltip positioning config options

Wed Oct 9 17:40:43 2024 +0200 - graphieros

Commit: 06ab547

  • Improvement - VueUiDonut - Add tooltip positioning config options

Wed Oct 9 17:40:30 2024 +0200 - graphieros

Commit: 03c5945

  • Improvement - VueUiGalaxy - Add tooltip positioning config options

Wed Oct 9 17:40:16 2024 +0200 - graphieros

Commit: 595dbcc

  • Improvement - VueUiHeatmap - Add tooltip positioning config options

Wed Oct 9 17:40:03 2024 +0200 - graphieros

Commit: f662136

  • Improvement - VueUiMolecule - Add tooltip positioning config options

Wed Oct 9 17:39:51 2024 +0200 - graphieros

Commit: 16633e9

  • Improvement - VueUiNestedDonuts - Add tooltip positioning config options

Wed Oct 9 17:39:36 2024 +0200 - graphieros

Commit: faabce6

  • Improvement - VueUiOnion - Add tooltip positioning config options

Wed Oct 9 17:39:22 2024 +0200 - graphieros

Commit: 387cddb

  • Improvement - VueUiParallelCoordinatePlot - Add tooltip positioning config options

Wed Oct 9 17:39:08 2024 +0200 - graphieros

Commit: dc702b4

  • Improvement - VueUiQuadrant - Add tooltip positioning config options

Wed Oct 9 17:38:56 2024 +0200 - graphieros

Commit: 97b71f1

  • Improvement - VueUiQuickChart - Add tooltip positioning config options

Wed Oct 9 17:38:39 2024 +0200 - graphieros

Commit: 37ae6ff

  • Improvement - VueUiRadar - Add tooltip positioning config options

Wed Oct 9 17:38:27 2024 +0200 - graphieros

Commit: 9563c0b

  • Improvement - VueUiRings - Add tooltip positioning config options

Wed Oct 9 17:38:12 2024 +0200 - graphieros

Commit: 443c90a

  • Improvement - VueUiScatter - Add tooltip positioning config options

Wed Oct 9 17:38:00 2024 +0200 - graphieros

Commit: 522a27e

  • Improvement - VueUiStripPlot - Add tooltip positioning config options

Wed Oct 9 17:37:46 2024 +0200 - graphieros

Commit: 2113934

  • Improvement - VueUiTreemap - Add tooltip positioning config options

Wed Oct 9 17:37:33 2024 +0200 - graphieros

Commit: 2478c9c

  • Improvement - VueUiVerticalBar - Add tooltip positioning config options

Wed Oct 9 17:37:18 2024 +0200 - graphieros

Commit: 6b24ca6

  • Improvement - VueUiWaffle - Add tooltip positioning config options

Wed Oct 9 17:37:05 2024 +0200 - graphieros

Commit: d4acf32

  • Improvement - VueUiXyCanvas - Add tooltip positioning config options

Wed Oct 9 17:36:51 2024 +0200 - graphieros

Commit: 5ec221b

  • Improvement - VueUiXy - Add tooltip positioning config options

Wed Oct 9 17:36:01 2024 +0200 - graphieros

Commit: 3121c30

  • Dev environment - Update testing arena

Wed Oct 9 17:35:23 2024 +0200 - graphieros

Commit: f2c5e55

  • Types - Add tooltip position and offsetY tooltip types

Wed Oct 9 17:34:59 2024 +0200 - graphieros

Commit: 9acc8c3

  • Config - Add tooltip position and offsetY config options

Wed Oct 9 17:34:35 2024 +0200 - graphieros

Commit: 2b1b766

  • Tooltip - Add position features to tooltip

Wed Oct 9 17:34:22 2024 +0200 - graphieros

Commit: b8fa755

  • Tooltip - Add position features to tooltip

Wed Oct 9 17:33:44 2024 +0200 - graphieros

Commit: 81bbe58

  • Update tests

Wed Oct 9 07:59:01 2024 +0200 - graphieros

Commit: 97df4c1

  • v2.3.21

Wed Oct 9 07:57:37 2024 +0200 - graphieros

Commit: 53eeefa

  • Fix - VueUiGizmo - Fix gauge proportion not exact

Tue Oct 8 14:27:36 2024 +0200 - graphieros

Commit: 288d1b9

  • v2.3.20

Tue Oct 8 14:23:54 2024 +0200 - graphieros

Commit: d071d41

  • Update docs

Tue Oct 8 14:23:43 2024 +0200 - graphieros

Commit: dc4cd73

  • New feature - VueUiGizmo - Add new component

Tue Oct 8 14:23:25 2024 +0200 - graphieros

Commit: 8755a20

  • Types - Add types for VueUiGizmo

Tue Oct 8 14:23:08 2024 +0200 - graphieros

Commit: 4af0161

  • Universal component - Add VueUiGizmo support

Tue Oct 8 14:22:47 2024 +0200 - graphieros

Commit: 9dc55e2

  • Config - Add VueUiGizmo config

Tue Oct 8 14:22:28 2024 +0200 - graphieros

Commit: 544266a

  • Dev environment - Update testing arena

Tue Oct 8 14:21:56 2024 +0200 - graphieros

Commit: 1cbfa1a

  • Build - Add VueUiGizmo export

Tue Oct 8 14:21:27 2024 +0200 - graphieros

Commit: bb52242

  • Improvement - VueUiIcon - Added battery icon

Mon Oct 7 18:21:47 2024 +0200 - graphieros

Commit: 3b4b6d1

  • v2.3.19

Mon Oct 7 18:17:31 2024 +0200 - graphieros

Commit: 3af2f0e

  • Universal component - Fix slot definition inaccuracy

Mon Oct 7 18:03:19 2024 +0200 - graphieros

Commit: 78fde7c

  • v2.3.18

Mon Oct 7 18:01:49 2024 +0200 - graphieros

Commit: 151dcdc

  • Update docs

Mon Oct 7 18:01:38 2024 +0200 - graphieros

Commit: e8186db

  • Style - Add watermark class

Mon Oct 7 18:01:13 2024 +0200 - graphieros

Commit: bab3665

  • Improvement - VueUiAgePyramid - Add watermark slot

Mon Oct 7 18:00:42 2024 +0200 - graphieros

Commit: 48ef16a

  • Improvement - VueUi3dBar - Add watermark slot

Mon Oct 7 18:00:25 2024 +0200 - graphieros

Commit: c498bb4

  • Improvement - VueUiCandlestick - Add watermark slot

Mon Oct 7 18:00:07 2024 +0200 - graphieros

Commit: 30f8c5b

  • Improvement - VueUiChestnut - Add watermark slot

Mon Oct 7 17:59:51 2024 +0200 - graphieros

Commit: 048aa30

  • Improvement - VueUiDonutEvolution - Add watermark slot

Mon Oct 7 17:59:36 2024 +0200 - graphieros

Commit: 8ebc54f

  • Improvement - VueUiDonut - Add watermark slot

Mon Oct 7 17:59:23 2024 +0200 - graphieros

Commit: 610d869

  • Improvement - VueUiDumbbell - Add watermark slot

Mon Oct 7 17:59:08 2024 +0200 - graphieros

Commit: 0b30a45

  • Improvement - VueUiFlow - Add watermark slot

Mon Oct 7 17:58:54 2024 +0200 - graphieros

Commit: be1f667

  • Improvement - VueUiGalaxy - Add watermark slot

Mon Oct 7 17:58:42 2024 +0200 - graphieros

Commit: 2366d01

  • Improvement - VueUiGauge - Add watermark slot

Mon Oct 7 17:58:28 2024 +0200 - graphieros

Commit: 6f24b1e

  • Improvement - VueUiHeatmap - Add watermark slot

Mon Oct 7 17:58:12 2024 +0200 - graphieros

Commit: 753e0e6

  • Improvement - VueUiMolecule - Add watermark slot

Mon Oct 7 17:57:45 2024 +0200 - graphieros

Commit: 151c4ce

  • Improvement - VueUiMoodRadar - Add watermark slot

Mon Oct 7 17:57:31 2024 +0200 - graphieros

Commit: 919e250

  • Improvement - VueUiNestedDonuts - Add watermark slot

Mon Oct 7 17:57:16 2024 +0200 - graphieros

Commit: a087309

  • Improvement - VueUiOnion - Add watermark slot

Mon Oct 7 17:57:02 2024 +0200 - graphieros

Commit: ed5e2be

  • Improvement - VueUiParallelCoordinatePlot - Add watermark slot

Mon Oct 7 17:56:45 2024 +0200 - graphieros

Commit: 7683106

  • Improvement - VueUiQuadrant - Add watermark slot

Mon Oct 7 17:56:31 2024 +0200 - graphieros

Commit: cb87487

  • Improvement - VueUiQuickChart - Add watermark slot

Mon Oct 7 17:56:15 2024 +0200 - graphieros

Commit: d72e303

  • Improvement - VueUiRadar - Add watermark slot

Mon Oct 7 17:56:01 2024 +0200 - graphieros

Commit: e7e9d38

  • Improvement - VueUiRelationCircle - Add watermark slot

Mon Oct 7 17:55:39 2024 +0200 - graphieros

Commit: 1492d28

  • Improvement - VueUiRings - Add watermark slot

Mon Oct 7 17:55:26 2024 +0200 - graphieros

Commit: 53a8c33

  • Improvement - VueUiScatter - Add watermark slot

Mon Oct 7 17:55:13 2024 +0200 - graphieros

Commit: 206db7c

  • Improvement - VueUiStripPlot - Add watermark slot

Mon Oct 7 17:54:59 2024 +0200 - graphieros

Commit: ff5c850

  • Improvement - VueUiThermometer - Add watermark slot

Mon Oct 7 17:54:42 2024 +0200 - graphieros

Commit: bca6f38

  • Improvement - VueUiTiremarks - Add watermark slot

Mon Oct 7 17:54:27 2024 +0200 - graphieros

Commit: 5a6b307

  • Improvement - VueUiTreemap - Add watermark slot

Mon Oct 7 17:54:13 2024 +0200 - graphieros

Commit: 9dd4934

  • Improvement - VueUiVerticalBar - Add watermark slot

Mon Oct 7 17:53:56 2024 +0200 - graphieros

Commit: ca1fa54

  • Improvement - VueUiWaffle - Add watermark slot

Mon Oct 7 17:53:41 2024 +0200 - graphieros

Commit: 880080c

  • Improvement - VueUiWheel - Add watermark slot

Mon Oct 7 17:53:23 2024 +0200 - graphieros

Commit: 395f6bf

  • Improvement - VueUiWordCloud - Add watermark slot

Mon Oct 7 17:53:06 2024 +0200 - graphieros

Commit: 7093d31

  • Improvement - VueUiXyCanvas - Add watermark slot

Mon Oct 7 17:52:48 2024 +0200 - graphieros

Commit: 68137c5

  • Improvement - VueUiXy - Add watermark slot

Mon Oct 7 17:44:24 2024 +0200 - graphieros

Commit: 5251cca

  • Dev environment - Update testing arena

Mon Oct 7 00:08:47 2024 +0200 - graphieros

Commit: e8148dc

  • v2.3.17

Mon Oct 7 00:07:03 2024 +0200 - graphieros

Commit: 9d487bf

  • Title - Add default slot

Mon Oct 7 00:06:50 2024 +0200 - graphieros

Commit: 53265ad

  • Fix - VueUiGauge - Fix title alignment options not applied

Sun Oct 6 23:20:33 2024 +0200 - graphieros

Commit: d226c15

  • v2.3.15

Sun Oct 6 23:19:08 2024 +0200 - graphieros

Commit: f6bab30

  • Dev environment - Update testing arena

Sun Oct 6 23:18:39 2024 +0200 - graphieros

Commit: 97d3245

  • Add textAlign and padding features to Title component

Sat Oct 5 06:16:59 2024 +0200 - graphieros

Commit: 1dac0e1

  • v2.3.14

Sat Oct 5 06:15:35 2024 +0200 - graphieros

Commit: 252eed0

  • Fix - VueUiSparkbar - Fix bar overflow when >100 in percentage mode

Fri Oct 4 17:39:15 2024 +0200 - graphieros

Commit: e324189

  • v2.3.13

Fri Oct 4 17:37:54 2024 +0200 - graphieros

Commit: 3bc85bf

  • Fix config

Fri Oct 4 17:34:34 2024 +0200 - graphieros

Commit: 8f7ca11

  • v2.3.12

Fri Oct 4 17:33:11 2024 +0200 - graphieros

Commit: 5cefc1f

  • Types - Add color attribute to VueUiSparkHistogramDatasetItem

Fri Oct 4 17:31:59 2024 +0200 - graphieros

Commit: 5fa3c4c

  • Improvement - VueUiSparkbar - Add more data label positioning options

Fri Oct 4 17:31:17 2024 +0200 - graphieros

Commit: 0242a3f

  • Improvement - VueUiSparkHistogram - Add color dataset option for individual datapoint coloring

Fri Oct 4 17:30:26 2024 +0200 - graphieros

Commit: a3d8f6f

  • Dev environment - Update testing arena

Fri Oct 4 09:21:09 2024 +0200 - graphieros

Commit: 07709dd

  • v2.3.11

Fri Oct 4 09:19:10 2024 +0200 - graphieros

Commit: bad4e20

  • Fix type def errors in VueUiSparkbar config & dataset

Fri Oct 4 08:18:59 2024 +0200 - graphieros

Commit: a662e81

  • v2.3.10

Fri Oct 4 08:17:34 2024 +0200 - graphieros

Commit: 31d3f14

  • Fix - VueUiSparkbar - Fix chart not updating when dataset changes

Fri Oct 4 08:16:56 2024 +0200 - graphieros

Commit: 54f8d5e

  • Dev environment - Updated VueUiSparkbar testing arena

Thu Oct 3 17:25:57 2024 +0200 - graphieros

Commit: 2c1d63d

  • v2.3.9

Thu Oct 3 17:24:32 2024 +0200 - graphieros

Commit: fddab62

  • Improvement - VueUiCarouselTable - Allow for any cell size

Thu Oct 3 17:23:50 2024 +0200 - graphieros

Commit: 37d4d15

  • Fix - VueUiWaffle - Keep cells centered when applying spaceBetween

Thu Oct 3 06:48:18 2024 +0200 - graphieros

Commit: 23ba6ae

  • v2.3.8

Thu Oct 3 06:43:12 2024 +0200 - graphieros

Commit: 2a689f4

  • Improvement - VueUiHeatmap - Base legend gauge line color on selected cell color & remove log

Thu Oct 3 06:42:22 2024 +0200 - graphieros

Commit: a4c4a3f

  • Fix - VueUiCarouselTable - Remove harmless error when animation runs on unmounted component

Wed Oct 2 07:19:12 2024 +0200 - graphieros

Commit: ab2679a

  • v2.3.7

Wed Oct 2 07:13:07 2024 +0200 - graphieros

Commit: cab9112

  • Improvement - VueUiCarouselTable - Added touch events

Wed Oct 2 06:58:46 2024 +0200 - graphieros

Commit: 17698ac

  • New feature - VueUiIcon - Added carouselTable icon

Tue Oct 1 20:13:13 2024 +0200 - graphieros

Commit: 2e4132f

  • v2.3.6

Tue Oct 1 20:12:12 2024 +0200 - graphieros

Commit: 7e9ef59

  • v2.3.5

Tue Oct 1 20:10:45 2024 +0200 - graphieros

Commit: dedfb41

  • New feature - VueUiCarouselTable - Added new component

Tue Oct 1 16:28:11 2024 +0200 - graphieros

Commit: 1106ea1

  • Update docs

Tue Oct 1 16:27:53 2024 +0200 - graphieros

Commit: 5f034c7

  • Types - Added types for VueUiCarouselTable

Tue Oct 1 16:27:38 2024 +0200 - graphieros

Commit: db29113

  • Universal component - Add support for VueUiCarouselTable component

Tue Oct 1 16:27:07 2024 +0200 - graphieros

Commit: c1a5fcc

  • Config - Add VueUiCarouselTable config

Tue Oct 1 16:26:51 2024 +0200 - graphieros

Commit: ca65db6

  • Add VueUiCarouselTable to lib entry point

Tue Oct 1 16:26:15 2024 +0200 - graphieros

Commit: aee3e32

  • UserOptions - Update with new features for VueUiCarouselTable

Tue Oct 1 16:25:32 2024 +0200 - graphieros

Commit: 0c99555

  • Dev environment - Add VueUiCarouselTable testing arena

Tue Oct 1 16:24:04 2024 +0200 - graphieros

Commit: a27992a

  • Add new VueUiCarouselTable component

Sun Sep 29 18:46:38 2024 +0200 - graphieros

Commit: 58f645f

  • v2.3.4

Sun Sep 29 18:45:14 2024 +0200 - graphieros

Commit: c99df82

  • Improve treeshaking using defineAsyncComponent in lib entry point

Sun Sep 29 18:44:36 2024 +0200 - graphieros

Commit: 954e64e

  • Fix - VueUiTableHeatmap - Fix UserOption positioning

Sun Sep 29 17:09:05 2024 +0200 - graphieros

Commit: 08cbd00

  • v2.3.3

Sun Sep 29 17:07:38 2024 +0200 - graphieros

Commit: 62f1fa0

  • Improvement - VueUiRings - Added optional ring borders

Sun Sep 29 07:33:32 2024 +0200 - graphieros

Commit: 3c7e3aa

  • v2.3.2

Sun Sep 29 07:32:06 2024 +0200 - graphieros

Commit: f40215c

  • UserOptions - Fix button labels color not applied

Sun Sep 29 07:27:01 2024 +0200 - graphieros

Commit: f26935b

  • Improvement - VueUiXy - Increase default font size for axis labels

Sun Sep 29 07:26:37 2024 +0200 - graphieros

Commit: 793936b

  • Config - Increase default font size for VueUiXy axis labels

Sat Sep 28 11:13:49 2024 +0200 - graphieros

Commit: cbedc52

  • v2.3.1

Sat Sep 28 11:12:28 2024 +0200 - graphieros

Commit: a7c387f

  • Improvement - VueUiHeatmap - Improve selected cell border visibility

Sat Sep 28 10:40:27 2024 +0200 - graphieros

Commit: 46c52fb

  • v2.3.0

Sat Sep 28 10:38:35 2024 +0200 - graphieros

Commit: 7bb96c7

  • Improvement - VueUiHeatmap - Improve selected cell border visibility

Sat Sep 28 10:37:59 2024 +0200 - graphieros

Commit: 7c71fa6

  • Config - Updated VueUiHeatmap config

Sat Sep 28 10:37:42 2024 +0200 - graphieros

Commit: 9e2ee9f

  • Dev environment - Updated VueUiHeatmap testing arena

Fri Sep 27 18:14:57 2024 +0200 - graphieros

Commit: 179e245

  • v2.2.99

Fri Sep 27 18:12:52 2024 +0200 - graphieros

Commit: 92e3637

  • Fix - VueUiXyCanvas - Fix font issue when 'inherit' is used as font

Fri Sep 27 18:12:01 2024 +0200 - graphieros

Commit: a367687

  • Config - Fix default font size for VueUiXyCanvas

Fri Sep 27 17:29:13 2024 +0200 - graphieros

Commit: d95d0ee

  • v2.2.98

Fri Sep 27 17:27:55 2024 +0200 - graphieros

Commit: 4cd91cc

  • Fix - VueUiDonutEvolution - Fix legend values not updating when zooming

Thu Sep 26 18:13:03 2024 +0200 - graphieros

Commit: 4463b3e

  • v2.2.97

Thu Sep 26 18:11:42 2024 +0200 - graphieros

Commit: 13b4207

  • Fix - VueUiParallelCoordinatePlot - Fix errors occurring when passing incomplete dataset series

Thu Sep 26 06:50:43 2024 +0200 - graphieros

Commit: 5403bac

  • v2.2.96

Thu Sep 26 06:49:19 2024 +0200 - graphieros

Commit: 4279556

  • Fix - VueUiWordCloud - Fix TS typo for config.style.chart.words.usePalette

Wed Sep 25 18:37:43 2024 +0200 - graphieros

Commit: 7132d33

  • v 2.2.95

Wed Sep 25 18:23:16 2024 +0200 - userquin

Commit: 87aa8fa

  • fix: include cjs and fix package.json entries

Wed Sep 25 12:22:09 2024 +0200 - graphieros

Commit: f1ac8d6

  • v 2.2.94

Wed Sep 25 12:19:42 2024 +0200 - graphieros

Commit: 1dce4a7

  • v2.2.93

Wed Sep 25 12:18:01 2024 +0200 - graphieros

Commit: 0c7d0e3

  • Build - Revert chunking

Wed Sep 25 12:13:50 2024 +0200 - graphieros

Commit: 7d7a84d

  • v2.2.91

Wed Sep 25 12:12:28 2024 +0200 - graphieros

Commit: 26436d6

  • Build - Implemented manual chunking

Wed Sep 25 09:50:44 2024 +0200 - graphieros

Commit: 9e3b87b

  • v2.2.90

Wed Sep 25 09:49:20 2024 +0200 - graphieros

Commit: 965608a

  • Improvement - VueUiAgePyramid - Added backgroundOpacity tooltip config option

Wed Sep 25 09:49:03 2024 +0200 - graphieros

Commit: 5a171cf

  • Improvement - VueUiCandlestick - Added backgroundOpacity tooltip config option

Wed Sep 25 09:48:48 2024 +0200 - graphieros

Commit: a5f5e27

  • Improvement - VueUiDonut - Added backgroundOpacity tooltip config option

Wed Sep 25 09:48:34 2024 +0200 - graphieros

Commit: 7c6d221

  • Improvement - VueUiGalaxy - Added backgroundOpacity tooltip config option

Wed Sep 25 09:48:20 2024 +0200 - graphieros

Commit: bab5b2d

  • Improvement - VueUiHeatmap - Added backgroundOpacity tooltip config option

Wed Sep 25 09:48:03 2024 +0200 - graphieros

Commit: f8c32f8

  • Improvement - VueUiMolecule - Added backgroundOpacity tooltip config option

Wed Sep 25 09:47:46 2024 +0200 - graphieros

Commit: 075ebdf

  • Improvement - VueUiNestedDonuts - Added backgroundOpacity tooltip config option

Wed Sep 25 09:47:29 2024 +0200 - graphieros

Commit: e2d8c6b

  • Improvement - VueUiOnion - Added backgroundOpacity tooltip config option

Wed Sep 25 09:47:17 2024 +0200 - graphieros

Commit: f61e0a9

  • Improvement - VueUiParallelCoordinatePlot - Added backgroundOpacity tooltip config option

Wed Sep 25 09:46:57 2024 +0200 - graphieros

Commit: f2d5a07

  • Improvement - VueUiQuadrant - Added backgroundOpacity tooltip config option

Wed Sep 25 09:46:43 2024 +0200 - graphieros

Commit: 2e55dd5

  • Improvement - VueUiQuickChart - Added tooltipBackgroundOpacity config option

Wed Sep 25 09:46:12 2024 +0200 - graphieros

Commit: dd81499

  • Improvement - VueUiRadar - Added backgroundOpacity tooltip config option

Wed Sep 25 09:45:55 2024 +0200 - graphieros

Commit: f08487b

  • Improvement - VueUiRings - Added backgroundOpacity tooltip config option

Wed Sep 25 09:45:40 2024 +0200 - graphieros

Commit: 45b0197

  • Improvement - VueUiScatter - Added backgroundOpacity tooltip config option

Wed Sep 25 09:45:24 2024 +0200 - graphieros

Commit: a959a54

  • VueUiSparkBar - Added backgroundOpacity prop

Wed Sep 25 09:44:43 2024 +0200 - graphieros

Commit: f21e9a9

  • Improvement - VueUiStripPlot - Added backgroundOpacity tooltip config option

Wed Sep 25 09:44:16 2024 +0200 - graphieros

Commit: e8cc0f9

  • Improvement - VueUiTreemap - Added backgroundOpacity tooltip config option

Wed Sep 25 09:43:19 2024 +0200 - graphieros

Commit: b76ca64

  • Improvement - VueUiVerticalBar - Added backgroundOpacity tooltip config option

Wed Sep 25 09:43:02 2024 +0200 - graphieros

Commit: 35e0bc8

  • Improvement - VueUiWaffle - Added backgroundOpacity tooltip config option

Wed Sep 25 09:42:45 2024 +0200 - graphieros

Commit: 0b2590c

  • Improvement - VueUiXyCanvas - Added backgroundOpacity tooltip config option

Wed Sep 25 09:42:25 2024 +0200 - graphieros

Commit: b3b6c44

  • Improvement - VueUiXy - Added backgroundOpacity tooltip config option

Wed Sep 25 09:41:39 2024 +0200 - graphieros

Commit: cbb73b7

  • Tooltip - Added backgroundOpacity prop

Wed Sep 25 09:41:17 2024 +0200 - graphieros

Commit: d3d9390

  • Dev environment - Updated arena with backgroundOpacity tooltip config option

Wed Sep 25 09:40:28 2024 +0200 - graphieros

Commit: 0627de4

  • Types - Added backgroundOpacity tooltip type

Wed Sep 25 09:40:03 2024 +0200 - graphieros

Commit: e642a9a

  • Config - Added backgroundOpacity tooltip config option

Tue Sep 24 10:58:51 2024 +0200 - graphieros

Commit: 888f9aa

  • Upgraded dev dependencies

Sat Sep 21 11:36:38 2024 +0200 - graphieros

Commit: 608a3cf

  • v2.2.89

Sat Sep 21 11:35:14 2024 +0200 - graphieros

Commit: 38f3c20

  • Improvement - UserOptions - Added tooltips

Wed Sep 18 06:44:13 2024 +0200 - graphieros

Commit: 7d1376b

  • Updated dev deps

Tue Sep 17 06:43:04 2024 +0200 - graphieros

Commit: ec4bea7

  • Removed unused config attribute

Mon Sep 16 21:15:39 2024 +0000 - dependabot[bot]

Commit: 5186932

  • Bump dompurify from 2.4.7 to 2.5.6

Tue Sep 10 17:36:05 2024 +0200 - graphieros

Commit: 5ad52ce

  • v2.2.88

Tue Sep 10 17:32:09 2024 +0200 - graphieros

Commit: 2c5ff0a

  • Dev environment - Updated VueUiTimer testing arena

Tue Sep 10 17:31:43 2024 +0200 - graphieros

Commit: f759cfc

  • Improvement - VueUiTimer - Use a web worker to keep the timer running normally when used on a sleeping browser tab

Tue Sep 10 17:30:49 2024 +0200 - graphieros

Commit: 21524f9

  • Timer class - Use web worker

Tue Sep 10 09:13:16 2024 +0200 - graphieros

Commit: 905b605

  • v2.2.87

Tue Sep 10 09:10:28 2024 +0200 - graphieros

Commit: 74d0c03

  • Fix - VueUiXyCanvas - Fixed non blocking error when canvas is loading and has no dimensions yet

Tue Sep 10 09:09:21 2024 +0200 - graphieros

Commit: 22af15d

  • Fix - VueUiQuadrant - Fixed non blocking error in responsive mode when svg wrapper has a size of zero

Tue Sep 10 09:08:45 2024 +0200 - graphieros

Commit: b608dbc

  • Fix - VueUiNestedDonuts - Removed non blocking error in responsive mode when svg wrapper has a size of zero

Tue Sep 10 07:42:54 2024 +0200 - graphieros

Commit: 267b165

  • v2.2.86

Tue Sep 10 07:41:32 2024 +0200 - graphieros

Commit: b6a5fbc

  • Fixed typo

Tue Sep 10 07:17:27 2024 +0200 - graphieros

Commit: 7ddc200

  • v2.2.85

Tue Sep 10 07:12:51 2024 +0200 - graphieros

Commit: 3f86b44

  • Config - Slight change to VueUiTiremarks defaults

Tue Sep 10 07:12:03 2024 +0200 - graphieros

Commit: 387f811

  • Added uids to some defs elements

Tue Sep 10 07:11:31 2024 +0200 - graphieros

Commit: 8ba7085

  • Dev environment - Show charts with default config

Tue Sep 10 07:11:09 2024 +0200 - graphieros

Commit: 9756228

  • Dev environment - Show charts with default config

Mon Sep 9 17:59:22 2024 +0200 - graphieros

Commit: 5952cf6

  • Removed flaky test

Mon Sep 9 17:48:52 2024 +0200 - graphieros

Commit: e4737d6

  • WIP - Replaced json config with condensed composable config

Fri Sep 6 18:52:00 2024 +0200 - graphieros

Commit: b997a4f

  • Modification - Spread title component config attributes

Fri Sep 6 06:42:22 2024 +0200 - graphieros

Commit: 9664b75

  • Upgrade version

Fri Sep 6 06:40:18 2024 +0200 - graphieros

Commit: cb22da9

  • v2.2.83

Fri Sep 6 06:38:05 2024 +0200 - graphieros

Commit: 362590b

  • Improvement - VueUiSparkbar - Added optional title

Fri Sep 6 06:37:32 2024 +0200 - graphieros

Commit: f41b620

  • Dev environment - Updated VueUiSparkbar testing arena

Fri Sep 6 06:37:12 2024 +0200 - graphieros

Commit: 25b6496

  • Types - Updated VueUiSparkbarConfig type

Fri Sep 6 06:36:50 2024 +0200 - graphieros

Commit: 3e0444e

  • Config - Updated VueUiSparkbar config

Thu Sep 5 16:11:46 2024 -0300 - Lucas Marra

Commit: acdef1e

  • fix: add title template in missing templates

Thu Sep 5 16:05:28 2024 -0300 - Lucas Marra

Commit: 1654ad0

  • Remove vue-data-ui

Thu Sep 5 15:58:11 2024 -0300 - Lucas Marra

Commit: 3badbe4

  • New feature- Title options and custom slot in VueUiSparkbar component

Thu Sep 5 20:13:01 2024 +0200 - graphieros

Commit: 36a4373

  • v2.2.82

Thu Sep 5 20:11:33 2024 +0200 - graphieros

Commit: 928aa8f

  • Fixed minor logic issue

Thu Sep 5 19:52:59 2024 +0200 - graphieros

Commit: 202c4bc

  • Updated readme

Thu Sep 5 19:27:05 2024 +0200 - graphieros

Commit: fb3b1ce

  • v2.2.81

Thu Sep 5 19:25:37 2024 +0200 - graphieros

Commit: 1e0fce4

  • Types - Updated VueUiTimerConfig type

Thu Sep 5 19:25:22 2024 +0200 - graphieros

Commit: 16d1984

  • Applied icon color config option

Thu Sep 5 19:24:51 2024 +0200 - graphieros

Commit: e608644

  • Dev environment - Updated VueUiTimer testing arena

Thu Sep 5 19:24:33 2024 +0200 - graphieros

Commit: fc54985

  • Config - Updated VueUiTimer config

Thu Sep 5 19:06:32 2024 +0200 - graphieros

Commit: 7025240

  • v2.2.80

Thu Sep 5 19:04:29 2024 +0200 - graphieros

Commit: fff45f1

  • Updated docs

Thu Sep 5 19:04:09 2024 +0200 - graphieros

Commit: 3f842b7

  • Types - Added VueUiTimerConfig type

Thu Sep 5 19:03:52 2024 +0200 - graphieros

Commit: 79deffa

  • Dev environment - Added VueUiTimer testing arena

Thu Sep 5 19:03:35 2024 +0200 - graphieros

Commit: 3395a27

  • New feature - VueUiTimer - Added new component

Thu Sep 5 19:03:15 2024 +0200 - graphieros

Commit: caa1333

  • Config - Added VueUiTimer config

Thu Sep 5 19:02:56 2024 +0200 - graphieros

Commit: af9f816

  • Added VueUiTimer export & import

Thu Sep 5 19:02:22 2024 +0200 - graphieros

Commit: ed57d9f

  • Dev environment - Updated testing arena with VueUiTimerArena

Thu Sep 5 19:01:28 2024 +0200 - graphieros

Commit: 5f0ac1b

  • Dev environment - Updated VueUiIcon testing arena

Thu Sep 5 19:00:59 2024 +0200 - graphieros

Commit: f3a6556

  • Universal component - Added VueUiTimer support

Thu Sep 5 19:00:40 2024 +0200 - graphieros

Commit: d51bd27

  • Improvement - VueUiIcon - Added new icons

Thu Sep 5 19:00:16 2024 +0200 - graphieros

Commit: c7885fe

  • Internal lib - Added timer class

Thu Sep 5 18:59:46 2024 +0200 - graphieros

Commit: a981463

  • Updated test

Mon Sep 2 05:36:32 2024 +0200 - graphieros

Commit: 9ffe68a

  • v2.2.79

Mon Sep 2 05:35:05 2024 +0200 - graphieros

Commit: 0d093c7

  • Updated docs

Mon Sep 2 05:33:14 2024 +0200 - graphieros

Commit: 5154390

  • New feature - VueUiSparkbar - Added scoped slot data-label

Mon Sep 2 05:32:18 2024 +0200 - graphieros

Commit: c520247

  • Modification - Renamed showTargetValueText to targetValueText

Sun Sep 1 22:47:05 2024 -0300 - Lucas Marra

Commit: 36444ac

  • Add showTargetValueText type

Sun Sep 1 22:31:33 2024 -0300 - Lucas Marra

Commit: 90040d5

  • Improvement - Target value display logic in VueUiSparkbar component

Sun Sep 1 13:17:37 2024 +0200 - graphieros

Commit: c4deb3c

  • Updated CONTRIBUTING.md

Sun Sep 1 07:56:01 2024 +0200 - graphieros

Commit: 79c28e6

  • Upgrade version

Sun Sep 1 07:55:25 2024 +0200 - graphieros

Commit: 97143c7

  • Upgrade version

Sun Sep 1 07:48:38 2024 +0200 - graphieros

Commit: 8ce37c8

  • v2.2.76

Sun Sep 1 07:45:57 2024 +0200 - graphieros

Commit: 9d3f030

  • v2.2.75

Sun Sep 1 07:44:21 2024 +0200 - graphieros

Commit: c5766f3

  • Updated component test

Sun Sep 1 07:38:10 2024 +0200 - graphieros

Commit: 862a5fb

  • Formatting - Removed space before colons in dataLabels and legends

Sun Sep 1 07:36:54 2024 +0200 - graphieros

Commit: 300a60e

  • Dev environment - Placed config knobs inside a details element

Sun Sep 1 07:28:41 2024 +0200 - graphieros

Commit: 65a168e

  • Removed local package

Fri Aug 30 17:19:53 2024 -0300 - Lucas Marra

Commit: edf0347

  • fix: remove space before colon in vue-ui-sparkbar.vue at sparkbar-value

Thu Aug 29 20:44:10 2024 +0200 - graphieros

Commit: 82992da

  • v2.2.74

Thu Aug 29 20:42:09 2024 +0200 - graphieros

Commit: 11a690a

  • Dev environment - Updated VueUiSparkbar testing arena

Thu Aug 29 20:41:36 2024 +0200 - graphieros

Commit: d1545cc

  • Improvement - VueUiSparkbar - Added optional individual dataset target attribute

Thu Aug 29 20:40:56 2024 +0200 - graphieros

Commit: e980e34

  • Types - Updated VueUiSparkbarDatasetItem type

Thu Aug 29 08:22:15 2024 +0200 - graphieros

Commit: 3566255

  • v2.2.73

Thu Aug 29 08:20:46 2024 +0200 - graphieros

Commit: aa96d4a

  • Fix - VueUiGauge - Fixed config option marker.offsetY not applied

Wed Aug 28 08:09:09 2024 +0200 - graphieros

Commit: f693874

  • v2.2.72

Wed Aug 28 08:07:45 2024 +0200 - graphieros

Commit: 1246f7c

  • Fix - VueUiGauge - Fixed pointer y offset when in rounded mode

Mon Aug 26 17:58:15 2024 +0200 - graphieros

Commit: ddecd69

  • v2.2.71

Mon Aug 26 17:56:44 2024 +0200 - graphieros

Commit: ced658d

  • Fix - VueUiXy - Fixed size issue occurring when changing dimensions in config

Mon Aug 26 07:09:52 2024 +0200 - graphieros

Commit: 6da4951

  • v2.2.70

Mon Aug 26 07:06:45 2024 +0200 - graphieros

Commit: f916ba3

  • Dev environment - Updated VueUiDonut testing arena

Mon Aug 26 07:06:14 2024 +0200 - graphieros

Commit: e8be2d0

  • Improvement - VueUiXy - Added user options configurable button titles for accessibility

Mon Aug 26 07:05:35 2024 +0200 - graphieros

Commit: 0a1bf78

  • Improvement - VueUiXy - Added user options configurable button titles for accessibility

Mon Aug 26 07:05:12 2024 +0200 - graphieros

Commit: 3a80b77

  • Improvement - VueUiWordCloud - Added user options configurable button titles for accessibility

Mon Aug 26 07:04:56 2024 +0200 - graphieros

Commit: 75b4847

  • Improvement - VueUiWheel - Added user options configurable button titles for accessibility

Mon Aug 26 07:04:37 2024 +0200 - graphieros

Commit: 655058e

  • Improvement - VueUiWaffle - Added user options configurable button titles for accessibility

Mon Aug 26 07:04:21 2024 +0200 - graphieros

Commit: aafa692

  • Improvement - VueUiVerticalBar - Added user options configurable button titles for accessibility

Mon Aug 26 07:04:05 2024 +0200 - graphieros

Commit: 674312b

  • Improvement - VueUiTreemap - Added user options configurable button titles for accessibility

Mon Aug 26 07:03:47 2024 +0200 - graphieros

Commit: c487b57

  • Improvement - VueUiTiremarks - Added user options configurable button titles for accessibility

Mon Aug 26 07:03:32 2024 +0200 - graphieros

Commit: 74a9d97

  • Improvement - VueUiThermometer - Added user options configurable button titles for accessibility

Mon Aug 26 07:03:11 2024 +0200 - graphieros

Commit: 06034aa

  • Improvement - VueUiTableSparkline - Added user options configurable button titles for accessibility

Mon Aug 26 07:02:51 2024 +0200 - graphieros

Commit: f7b72f5

  • Improvement - VueUiTableHeatmap - Added user options configurable button titles for accessibility

Mon Aug 26 07:02:17 2024 +0200 - graphieros

Commit: 4eef8c8

  • Improvement - VueUiStripPlot - Added user options configurable button titles for accessibility

Mon Aug 26 07:02:01 2024 +0200 - graphieros

Commit: 4c78613

  • Improvement - VueUiScatter - Added user options configurable button titles for accessibility

Mon Aug 26 07:01:47 2024 +0200 - graphieros

Commit: 6bd5865

  • Improvement - VueUiRings - Added user options configurable button titles for accessibility

Mon Aug 26 07:01:33 2024 +0200 - graphieros

Commit: eeef331

  • Improvement - VueUiRelationCircle - Added user options configurable button titles for accessibility

Mon Aug 26 07:01:14 2024 +0200 - graphieros

Commit: e02ea08

  • Improvement - VueUiRadar - Added user options configurable button titles for accessibility

Mon Aug 26 07:01:00 2024 +0200 - graphieros

Commit: 22dc423

  • Improvement - VueUiQuickChart - Added user options configurable button titles for accessibility

Mon Aug 26 07:00:44 2024 +0200 - graphieros

Commit: 0549cfc

  • Improvement - VueUiQuadrant - Added user options configurable button titles for accessibility

Mon Aug 26 07:00:30 2024 +0200 - graphieros

Commit: 5df54e8

  • Improvement - VueUiParallelCoordinatePlot - Added user options configurable button titles for accessibility

Mon Aug 26 07:00:14 2024 +0200 - graphieros

Commit: 7d60df1

  • Improvement - VueUiOnion - Added user options configurable button titles for accessibility

Mon Aug 26 07:00:00 2024 +0200 - graphieros

Commit: d79e060

  • Improvement - VueUiNestedDonuts - Added user options configurable button titles for accessibility

Mon Aug 26 06:59:42 2024 +0200 - graphieros

Commit: 4eef358

  • Improvement - VueUiMoodRadar - Added user options configurable button titles for accessibility

Mon Aug 26 06:59:27 2024 +0200 - graphieros

Commit: 15b7b70

  • Improvement - VueUiMolecule - Added user options configurable button titles for accessibility

Mon Aug 26 06:59:09 2024 +0200 - graphieros

Commit: 7ebd18d

  • Improvement - VueUiHeatmap - Added user options configurable button titles for accessibility

Mon Aug 26 06:58:51 2024 +0200 - graphieros

Commit: c0d5a60

  • Improvement - VueUiGauge - Added user options configurable button titles for accessibility

Mon Aug 26 06:58:32 2024 +0200 - graphieros

Commit: 34ed420

  • Improvement - VueUiGalaxy - Added user options configurable button titles for accessibility

Mon Aug 26 06:58:17 2024 +0200 - graphieros

Commit: fc3cc72

  • Improvement - VueUiFlow - Added user options configurable button titles for accessibility

Mon Aug 26 06:58:03 2024 +0200 - graphieros

Commit: 31739a5

  • Improvement - VueUiDumbbell - Added user options configurable button titles for accessibility

Mon Aug 26 06:57:46 2024 +0200 - graphieros

Commit: e89a792

  • Improvement - VueUiDonut - Added user options configurable button titles for accessibility

Mon Aug 26 06:57:29 2024 +0200 - graphieros

Commit: 6413f39

  • Improvement - VueUiDonutEvolution - Added user options configurable button titles for accessibility

Mon Aug 26 06:57:10 2024 +0200 - graphieros

Commit: f726864

  • Improvement - VueUiChestnut - Added user options configurable button titles for accessibility

Mon Aug 26 06:56:54 2024 +0200 - graphieros

Commit: 0888a73

  • Improvement - VueUiCandlestick - Added user options configurable button titles for accessibility

Mon Aug 26 06:56:20 2024 +0200 - graphieros

Commit: 4ca1db2

  • Improvement - VueUiAgePyramid - Added user options configurable button titles for accessibility

Mon Aug 26 06:55:57 2024 +0200 - graphieros

Commit: 34d068e

  • Improvement - VueUi3dBar - Added user options configurable button titles for accessibility

Mon Aug 26 06:54:32 2024 +0200 - graphieros

Commit: 0f92146

  • UserOptions - Added title attributes

Mon Aug 26 06:54:13 2024 +0200 - graphieros

Commit: 70a7375

  • Config - Updated with user options default button titles

Mon Aug 26 06:53:44 2024 +0200 - graphieros

Commit: 147a2ec

  • Types - Updated config types with user options button titles

Sun Aug 25 11:10:29 2024 +0200 - graphieros

Commit: f714d40

  • v2.2.69

Sun Aug 25 11:03:42 2024 +0200 - graphieros

Commit: 6d29e3f

  • Updated readme

Sun Aug 25 11:03:04 2024 +0200 - graphieros

Commit: b881fbc

  • Imrpovement - VueUiParallelCoordinatePlot - Added optional dataset comments attribte

Sun Aug 25 11:02:39 2024 +0200 - graphieros

Commit: 0db31bd

  • Improvement - VueUiDonut - Added optional dataset series comment attribute

Sun Aug 25 11:01:46 2024 +0200 - graphieros

Commit: 2f8113b

  • Types - Added comments types to VueUiDonutConfig & VueUiParallelCoordinatePlotConfig

Sun Aug 25 11:01:14 2024 +0200 - graphieros

Commit: e5a2ab0

  • Dev environment - Updated VueUiParallelCoordinatePlot testing arena

Sun Aug 25 11:00:51 2024 +0200 - graphieros

Commit: 12cea3d

  • Dev environment - Updated VueUiDonut testing arena

Sun Aug 25 11:00:24 2024 +0200 - graphieros

Commit: 8ef3582

  • Config - Added optional comments config

Sun Aug 25 09:13:59 2024 +0200 - graphieros

Commit: 9df7808

  • v2.2.68

Sun Aug 25 09:12:25 2024 +0200 - graphieros

Commit: ae45a25

  • Updated readme

Sun Aug 25 09:12:06 2024 +0200 - graphieros

Commit: 02122f6

  • Dev environment - Updated VueUiXy testing arena

Sun Aug 25 09:11:45 2024 +0200 - graphieros

Commit: a88b9f2

  • Fix - VueUiXy - Renamed #plotComment slot to #plot-comment

Sat Aug 24 18:58:05 2024 +0200 - graphieros

Commit: fa9909f

  • v2.2.67

Sat Aug 24 18:56:35 2024 +0200 - graphieros

Commit: 4f4520c

  • Fixed VueUiXy comments wrong index when using zoom

Sat Aug 24 18:56:03 2024 +0200 - graphieros

Commit: d099dfb

  • Dev environment - Updated VueUiXy arena

Sat Aug 24 18:38:15 2024 +0200 - graphieros

Commit: 2be3e29

  • v2.2.66

Sat Aug 24 18:33:22 2024 +0200 - graphieros

Commit: 76ab2c4

  • Improvement - VueUiXy - Added optional dataset comments attribute

Sat Aug 24 18:32:46 2024 +0200 - graphieros

Commit: 0c06a12

  • Dev environment - Updated VueUiXy testing arena

Sat Aug 24 18:32:27 2024 +0200 - graphieros

Commit: 7f77b7f

  • Types - Added comments types to VueUiXyConfig

Sat Aug 24 18:32:06 2024 +0200 - graphieros

Commit: 0919435

  • Config - Added comments config options to VueUiXy

Sat Aug 24 09:47:11 2024 +0200 - graphieros

Commit: 74ea5d1

  • v2.2.65

Sat Aug 24 09:45:43 2024 +0200 - graphieros

Commit: d9b6aa2

  • Removed log

Sat Aug 24 09:44:08 2024 +0200 - graphieros

Commit: bb55f0e

  • v2.2.64

Sat Aug 24 09:42:24 2024 +0200 - graphieros

Commit: 13097f4

  • Fix - VueUiMolecule - Renamed parentNode name usage to ancestor to avoid any naming conflicts

Sat Aug 24 09:41:48 2024 +0200 - graphieros

Commit: 07fc4ca

  • Types - Renamed parentNode to ancestor

Sat Aug 24 09:41:29 2024 +0200 - graphieros

Commit: 4fbf11f

  • Dev environment - Updated VueUiMolecule testing arena

Sat Aug 24 09:41:12 2024 +0200 - graphieros

Commit: 4235352

  • Recursive atoms - Renamed parentNode to ancestor

Sat Aug 24 09:40:41 2024 +0200 - graphieros

Commit: c2f9420

  • Config - Renamed parentNode to ancestor

Fri Aug 23 07:02:28 2024 +0200 - graphieros

Commit: 67b08d2

  • v2.2.63

Fri Aug 23 07:00:49 2024 +0200 - graphieros

Commit: a6e6d1b

  • Updated docs

Fri Aug 23 07:00:33 2024 +0200 - graphieros

Commit: 9b38994

  • Dev environment - Updated testing arena

Fri Aug 23 07:00:06 2024 +0200 - graphieros

Commit: e8df18d

  • Improvement - VueUiXy - Added toggle tooltip user option

Fri Aug 23 06:59:50 2024 +0200 - graphieros

Commit: 43359a6

  • Improvement - VueUiXyCanvas - Added toggle tooltip user option

Fri Aug 23 06:59:32 2024 +0200 - graphieros

Commit: 99ce45d

  • Improvement - VueUiWaffle - Added toggle tooltip user option

Fri Aug 23 06:59:17 2024 +0200 - graphieros

Commit: 166aaa2

  • Improvement - VueUiVerticalBar - Added toggle tooltip user option

Fri Aug 23 06:58:59 2024 +0200 - graphieros

Commit: 16e8c74

  • Improvement - VueUiTreemap - Added toggle tooltip user option

Fri Aug 23 06:58:37 2024 +0200 - graphieros

Commit: f9a945d

  • Improvement - VueUiStripPlot - Added toggle tooltip user option

Fri Aug 23 06:58:16 2024 +0200 - graphieros

Commit: 197ae72

  • Improvement - VueUiScatter - Added toggle tooltip user option

Fri Aug 23 06:57:54 2024 +0200 - graphieros

Commit: e2937da

  • Improvement - VueUiRings - Added toggle tooltip user option

Fri Aug 23 06:57:39 2024 +0200 - graphieros

Commit: 934311f

  • Improvement - VueUiRadar - Added toggle tooltip user option

Fri Aug 23 06:57:18 2024 +0200 - graphieros

Commit: 3f84b91

  • Improvement - VueUiQuickChart - Added toggle tooltip user option

Fri Aug 23 06:57:02 2024 +0200 - graphieros

Commit: 4b49072

  • Improvement - VueUiQuadrant - Added toggle tooltip user option

Fri Aug 23 06:56:47 2024 +0200 - graphieros

Commit: e549957

  • Improvement - VueUiParallelCoordinatePlot - Added toggle tooltip user option

Fri Aug 23 06:56:26 2024 +0200 - graphieros

Commit: f527270

  • Improvement - VueUiOnion - Added toggle tooltip user option

Fri Aug 23 06:56:09 2024 +0200 - graphieros

Commit: dadde20

  • Improvement - VueUiNestedDonuts - Added toggle tooltip user option

Fri Aug 23 06:55:50 2024 +0200 - graphieros

Commit: 48d93f0

  • Improvement - VueUiMolecule - Added toggle tooltip user option

Fri Aug 23 06:55:30 2024 +0200 - graphieros

Commit: 4ef8e8d

  • Improvement - VueUiHeatmap - Added toggle tooltip user option

Fri Aug 23 06:55:10 2024 +0200 - graphieros

Commit: 032b4e5

  • Improvement - VueUiGalaxy - Added toggle tooltip user option

Fri Aug 23 06:54:53 2024 +0200 - graphieros

Commit: 6cd9050

  • Improvement - VueUiDonut - Added toggle tooltip user option

Fri Aug 23 06:54:35 2024 +0200 - graphieros

Commit: 539ba00

  • Improvement - VueUiCandlestick - Added toggle tooltip user option

Fri Aug 23 06:54:15 2024 +0200 - graphieros

Commit: 92b9e75

  • Improvement - VueUiAgePyramid - Added toggle tooltip user option

Fri Aug 23 06:49:29 2024 +0200 - graphieros

Commit: 192825f

  • Universal component - Updated with toggleTooltip feature

Fri Aug 23 06:48:50 2024 +0200 - graphieros

Commit: dbc7a97

  • UserOptions - Updated e2e test

Fri Aug 23 06:48:26 2024 +0200 - graphieros

Commit: 5ba6840

  • UserOptions - Added tooltip toggle

Fri Aug 23 06:47:56 2024 +0200 - graphieros

Commit: 2e1cd83

  • Improvement - VueUiIcon - Added tooltipDisabled icon

Fri Aug 23 06:47:35 2024 +0200 - graphieros

Commit: 2323136

  • Types - Added tooltipDisabled icon name

Fri Aug 23 06:45:06 2024 +0200 - graphieros

Commit: 6dc0c56

  • Config - Added user option tooltip config option

Fri Aug 23 06:44:45 2024 +0200 - graphieros

Commit: c17c2e1

  • Types - Added user option tooltip type

Wed Aug 21 17:38:19 2024 +0200 - graphieros

Commit: 0b455a0

  • v2.2.62

Wed Aug 21 17:36:53 2024 +0200 - graphieros

Commit: 6d29ca7

  • Types - Fixed wrong typing in VueUiXyConfig

Tue Aug 20 07:57:11 2024 +0200 - graphieros

Commit: da37df9

  • v2.2.61

Tue Aug 20 07:52:39 2024 +0200 - graphieros

Commit: 6b5d0c5

  • Updated readme

Tue Aug 20 07:52:28 2024 +0200 - graphieros

Commit: fe2fee9

  • Dev environment - Updated testing arena

Tue Aug 20 07:52:05 2024 +0200 - graphieros

Commit: f42ba4b

  • Types - Updated types

Tue Aug 20 07:51:51 2024 +0200 - graphieros

Commit: 315099a

  • Config - Updated config

Tue Aug 20 07:51:38 2024 +0200 - graphieros

Commit: c0851c6

  • Improvement - VueUiWheel - Implemented responsive feature

Tue Aug 20 07:51:15 2024 +0200 - graphieros

Commit: 70eba16

  • Improvement - VueUiGauge - Implemented responsive feature

Tue Aug 20 07:50:54 2024 +0200 - graphieros

Commit: f7efc8c

  • Improvement - VueUiDumbbell - Implemented responsive feature

Sun Aug 18 19:17:30 2024 +0200 - graphieros

Commit: 2d1efab

  • v2.2.60

Sun Aug 18 19:15:57 2024 +0200 - graphieros

Commit: cf8a886

  • Updated readme

Sun Aug 18 19:15:48 2024 +0200 - graphieros

Commit: aae9188

  • Dev environment - Updated testing arenas

Sun Aug 18 19:15:27 2024 +0200 - graphieros

Commit: af10a6d

  • Types - Updated types

Sun Aug 18 19:15:16 2024 +0200 - graphieros

Commit: 71b5100

  • Config - Updated config

Sun Aug 18 19:14:50 2024 +0200 - graphieros

Commit: fb85a89

  • Improvement - VueUiWordCloud - Implemented responsive feature

Sun Aug 18 19:14:31 2024 +0200 - graphieros

Commit: 3cf7076

  • Improvement - VueUiVerticalBar - Implemented responsive feature

Sun Aug 18 19:14:08 2024 +0200 - graphieros

Commit: eb8004d

  • Improvement - VueUiXyCanvas - Implemented responsive feature

Sun Aug 18 19:12:35 2024 +0200 - graphieros

Commit: 5eb3624

  • v2.2.59

Sat Aug 17 18:55:26 2024 +0200 - graphieros

Commit: c32025f

  • v2.2.58

Sat Aug 17 18:53:55 2024 +0200 - graphieros

Commit: 43d178c

  • Dev environment - Updated VueUiXyCanvas testing arena

Sat Aug 17 18:53:33 2024 +0200 - graphieros

Commit: d020831

  • Config - Updated VueUiXyCanvas config

Sat Aug 17 18:53:14 2024 +0200 - graphieros

Commit: 7036fd5

  • Improvement - VueUiXyCanvas - Added modulo config attribute to manage the number of time labels to display

Sat Aug 17 18:41:50 2024 +0200 - graphieros

Commit: 0bacae2

  • v2.2.57

Sat Aug 17 18:40:09 2024 +0200 - graphieros

Commit: cc8dcfa

  • Improvement - VueUiXy - Show last x axis label value on large datasets when modulo is enabled

Sat Aug 17 15:59:51 2024 +0200 - graphieros

Commit: 08dd6fc

  • v2.2.56

Sat Aug 17 15:57:27 2024 +0200 - graphieros

Commit: 7a2f0b4

  • Dev environment - Updated VueUiXy arena

Sat Aug 17 15:57:11 2024 +0200 - graphieros

Commit: da57a7f

  • Types - Updated VueUiXyConfig types

Sat Aug 17 15:56:34 2024 +0200 - graphieros

Commit: 5f988aa

  • Config - Updated VueUiXy config

Sat Aug 17 15:56:18 2024 +0200 - graphieros

Commit: 14d16a1

  • Improvement - VueUiXy - Added config attributes to show time labels at a given mod position

Sat Aug 17 10:44:59 2024 +0200 - graphieros

Commit: d1ed2a3

  • v2.2.55

Sat Aug 17 10:41:00 2024 +0200 - graphieros

Commit: e1c9723

  • Updated readme

Sat Aug 17 10:40:49 2024 +0200 - graphieros

Commit: 13d965a

  • Types - Added responsive type to a few charts

Sat Aug 17 10:40:34 2024 +0200 - graphieros

Commit: e30c79a

  • Config - Updated with responsive feature for a few charts

Sat Aug 17 10:39:33 2024 +0200 - graphieros

Commit: 49beeec

  • Dev environment - Updated arenas with responsive feature

Sat Aug 17 10:39:07 2024 +0200 - graphieros

Commit: 7179cec

  • Improvement - VueUiWaffle - Implemented responsive feature

Sat Aug 17 10:38:48 2024 +0200 - graphieros

Commit: 0df71db

  • Improvement - VueUiStripPlot - Implemented responsive feature

Sat Aug 17 10:38:26 2024 +0200 - graphieros

Commit: 519beb2

  • Improvement - VueUiScatter - Implemented responsive feature

Sat Aug 17 10:38:05 2024 +0200 - graphieros

Commit: 498b9ef

  • Improvement - VueUiRelationCircle - Implemented responsive feature

Sat Aug 17 10:37:41 2024 +0200 - graphieros

Commit: e8addfc

  • Improvement - VueUiQuadrant - Implemented responsive feature

Thu Aug 15 10:24:09 2024 +0200 - graphieros

Commit: 04f5fcf

  • v2.2.54

Thu Aug 15 10:20:46 2024 +0200 - graphieros

Commit: 89504ca

  • Removed bottom blank spacing in responsive mode

Thu Aug 15 10:10:56 2024 +0200 - graphieros

Commit: b2a872b

  • Updated test

Thu Aug 15 10:10:47 2024 +0200 - graphieros

Commit: 5421577

  • VueUiGauge - Show gradient conditionally

Thu Aug 15 10:01:56 2024 +0200 - graphieros

Commit: e20dfb8

  • Updated readme

Thu Aug 15 10:01:44 2024 +0200 - graphieros

Commit: d30fa8f

  • Dev environment - Updated testing arenas

Thu Aug 15 10:00:55 2024 +0200 - graphieros

Commit: 495f7a3

  • Updated types

Thu Aug 15 10:00:38 2024 +0200 - graphieros

Commit: a3c36ca

  • Updated VueUiGauge theme

Thu Aug 15 10:00:23 2024 +0200 - graphieros

Commit: 4b655bd

  • Updated config

Thu Aug 15 10:00:06 2024 +0200 - graphieros

Commit: 6a186cd

  • Fix - VueUiXy - Fix chart wrapper leaving a small bottom gap in responsive mode

Thu Aug 15 09:59:13 2024 +0200 - graphieros

Commit: 4b6e316

  • Improvement - VueUiCandlestick - Implemented responsive feature

Thu Aug 15 09:58:53 2024 +0200 - graphieros

Commit: 365f690

  • Improvement - VueUiAgePyramid - Implemented responsive feature

Thu Aug 15 09:58:19 2024 +0200 - graphieros

Commit: 60cf09c

  • Improvement - VueUiGauge - Improved chart design

Tue Aug 13 08:10:45 2024 +0200 - graphieros

Commit: 9a0c051

  • v2.2.53

Tue Aug 13 08:09:21 2024 +0200 - graphieros

Commit: d2d5eb4

  • Updated readme

Tue Aug 13 08:08:04 2024 +0200 - graphieros

Commit: f7a78f4

  • Tests - Updated translateSize utility function

Tue Aug 13 08:07:21 2024 +0200 - graphieros

Commit: 30e8830

  • Types - Added responsive type to a few chart configs

Tue Aug 13 08:07:00 2024 +0200 - graphieros

Commit: 79bc298

  • Config - Added responsive feature to a few charts

Tue Aug 13 08:06:41 2024 +0200 - graphieros

Commit: b5e3a59

  • Dev environment - Updated testing arenas with responsive feature

Tue Aug 13 08:05:59 2024 +0200 - graphieros

Commit: 3bf12ec

  • Improvement - VueUiTreemap - Implemented responsive feature

Tue Aug 13 08:05:34 2024 +0200 - graphieros

Commit: d66d1b9

  • Improvement - VueUiRings - Implemented responsive feature

Tue Aug 13 08:05:12 2024 +0200 - graphieros

Commit: e91cce0

  • Improvement - VueUiRadar - Implemented responsive feature

Tue Aug 13 08:04:54 2024 +0200 - graphieros

Commit: 7474409

  • Improvement - VueUiParallelCoordinatePlot - Implemented responsive feature

Sun Aug 11 17:07:39 2024 +0200 - graphieros

Commit: 65ee9c4

  • v2.2.52

Sun Aug 11 17:05:07 2024 +0200 - graphieros

Commit: de6125b

  • Updated readme

Sun Aug 11 17:04:56 2024 +0200 - graphieros

Commit: 0ba28c2

  • Dev environment - Updated arenas with responsive feature for several charts

Sun Aug 11 17:03:57 2024 +0200 - graphieros

Commit: 118d00c

  • Types - Added responsive type on several chart config types

Sun Aug 11 17:03:00 2024 +0200 - graphieros

Commit: c2295cd

  • Config - Added responsive feature on several charts

Sun Aug 11 17:02:35 2024 +0200 - graphieros

Commit: 52e7e3a

  • Internal lib - Added utility functions related to responsive feature

Sun Aug 11 17:02:00 2024 +0200 - graphieros

Commit: eddb9e1

  • Improvement - VueUiXy - Implemented responsive feature

Sun Aug 11 17:01:36 2024 +0200 - graphieros

Commit: dba1321

  • Improvement - VueUiQuickChart - Implemented responsive feature

Sun Aug 11 17:01:16 2024 +0200 - graphieros

Commit: 3aa46ae

  • Improvement - VueUiOnion - Implemented responsive feature

Sun Aug 11 17:00:53 2024 +0200 - graphieros

Commit: 0945d76

  • Improvement - VueUiNestedDonuts - Implemented responsive feature

Sun Aug 11 17:00:31 2024 +0200 - graphieros

Commit: d219b62

  • Improvement - VueUiDonut - Implemented responsive feature

Sat Aug 10 09:14:33 2024 +0200 - graphieros

Commit: 4e97455

  • v2.2.51

Sat Aug 10 09:12:52 2024 +0200 - graphieros

Commit: 58b3645

  • Updated docs

Sat Aug 10 09:12:23 2024 +0200 - graphieros

Commit: 07c940a

  • Modification - Renamed user option action slots

Sat Aug 10 08:37:34 2024 +0200 - graphieros

Commit: 9e23afa

  • Dev environment - Updated arena with user option slots tests

Sat Aug 10 08:36:46 2024 +0200 - graphieros

Commit: 6e74ee5

  • Types - Updated user option types

Sat Aug 10 08:36:30 2024 +0200 - graphieros

Commit: fafaee4

  • Config - Added user option flags to display or hide action buttons

Sat Aug 10 08:35:58 2024 +0200 - graphieros

Commit: cefc31b

  • Improvement - VueUiXy - Implemented slots for user options button contents

Sat Aug 10 08:35:43 2024 +0200 - graphieros

Commit: 87c6055

  • Improvement - VueUiXyCanvas - Implemented slots for user options button contents

Sat Aug 10 08:35:28 2024 +0200 - graphieros

Commit: 2c6ed9c

  • Improvement - VueUiWordCloud - Implemented slots for user options button contents

Sat Aug 10 08:35:11 2024 +0200 - graphieros

Commit: 5855b71

  • Improvement - VueUiWheel - Implemented slots for user options button contents

Sat Aug 10 08:34:56 2024 +0200 - graphieros

Commit: 62879e8

  • Improvement - VueUiWaffle - Implemented slots for user options button contents

Sat Aug 10 08:34:40 2024 +0200 - graphieros

Commit: 4cd3319

  • Improvement - VueUiVerticalBar - Implemented slots for user options button contents

Sat Aug 10 08:34:24 2024 +0200 - graphieros

Commit: 90c5191

  • Improvement - VueUiTreemap - Implemented slots for user options button contents

Sat Aug 10 08:34:10 2024 +0200 - graphieros

Commit: c2ac364

  • Improvement - VueUiTiremarks - Implemented slots for user options button contents

Sat Aug 10 08:33:50 2024 +0200 - graphieros

Commit: cf5a9b8

  • Improvement - VueUiThermometer - Implemented slots for user options button contents

Sat Aug 10 08:33:36 2024 +0200 - graphieros

Commit: 8369970

  • Improvement - VueUiTableSparkline - Implemented slots for user options button contents

Sat Aug 10 08:33:19 2024 +0200 - graphieros

Commit: 5a1f1d1

  • Improvement - VueUiTableHeatmap - Implemented slots for user options button contents

Sat Aug 10 08:33:02 2024 +0200 - graphieros

Commit: 4e7dbfd

  • Improvement - VueUiStripPlot - Implemented slots for user options button contents

Sat Aug 10 08:32:47 2024 +0200 - graphieros

Commit: ad61445

  • Improvement - VueUiScatter - Implemented slots for user options button contents

Sat Aug 10 08:32:34 2024 +0200 - graphieros

Commit: ca01af1

  • Improvement - VueUiRings - Implemented slots for user options button contents

Sat Aug 10 08:32:20 2024 +0200 - graphieros

Commit: d46de3d

  • Improvement - VueUiRelationCircle - Implemented slots for user options button contents

Sat Aug 10 08:32:04 2024 +0200 - graphieros

Commit: c792911

  • Improvement - VueUiRadar - Implemented slots for user options button contents

Sat Aug 10 08:31:46 2024 +0200 - graphieros

Commit: e92282b

  • Improvement - VueUiQuickChart - Implemented slots for user options button contents

Sat Aug 10 08:31:30 2024 +0200 - graphieros

Commit: 6f858b6

  • Improvement - VueUiQuadrant - Implemented slots for user options button contents

Sat Aug 10 08:31:16 2024 +0200 - graphieros

Commit: 9bd05fd

  • Improvement - VueUiParallelCoordinatePlot - Implemented slots for user options button contents

Sat Aug 10 08:30:57 2024 +0200 - graphieros

Commit: 8bbc17d

  • Improvement - VueUiOnion - Implemented slots for user options button contents

Sat Aug 10 08:30:42 2024 +0200 - graphieros

Commit: 98f640e

  • Improvement - VueUiNestedDonuts - Implemented slots for user options button contents

Sat Aug 10 08:30:23 2024 +0200 - graphieros

Commit: 61f131e

  • Improvement - VueUiMoodRadar - Implemented slots for user options button contents

Sat Aug 10 08:29:53 2024 +0200 - graphieros

Commit: 973ae5a

  • Improvement - VueUiMolecule - Implemented slots for user options button contents

Sat Aug 10 08:29:40 2024 +0200 - graphieros

Commit: 5285e65

  • Improvement - VueUiHeatmap - Implemented slots for user options button contents

Sat Aug 10 08:29:23 2024 +0200 - graphieros

Commit: af4d0a6

  • Improvement - VueUiGauge - Implemented slots for user options button contents

Sat Aug 10 08:29:08 2024 +0200 - graphieros

Commit: 8e53dac

  • Improvement - VueUiGalaxy - Implemented slots for user options button contents

Sat Aug 10 08:28:40 2024 +0200 - graphieros

Commit: 486dfd2

  • Improvement - VueUiFlow - Implemented slots for user options button contents

Sat Aug 10 08:28:25 2024 +0200 - graphieros

Commit: 6dad192

  • Improvement - VueUiDumbbell - Implemented slots for user options button contents

Sat Aug 10 08:28:06 2024 +0200 - graphieros

Commit: 91c3f86

  • Improvement - VueUiDonut - Implemented slots for user options button contents

Sat Aug 10 08:27:49 2024 +0200 - graphieros

Commit: ae64569

  • Improvement - VueUiDonutEvolution - Implemented slots for user options button contents

Sat Aug 10 08:27:30 2024 +0200 - graphieros

Commit: 50a1696

  • Improvement - VueUiChestnut - Implemented slots for user options button contents

Sat Aug 10 08:26:51 2024 +0200 - graphieros

Commit: 91b72b1

  • Improvement - VueUiCandlestick - Implemented slots for user options button contents

Sat Aug 10 08:26:34 2024 +0200 - graphieros

Commit: b265580

  • Improvement - VueUiAgePyramid - Implemented slots for user options button contents

Sat Aug 10 08:26:03 2024 +0200 - graphieros

Commit: 2d5052c

  • Improvement - VueUi3dBar - Implemented slots for user options button contents

Sat Aug 10 08:25:12 2024 +0200 - graphieros

Commit: 102ef85

  • UserOptions - Added slots for button contents

Tue Aug 6 19:03:33 2024 +0200 - graphieros

Commit: b3cb2a1

  • v2.2.50

Tue Aug 6 18:51:14 2024 +0200 - graphieros

Commit: 6aeeeca

  • Types - Updates skeleton types

Tue Aug 6 18:51:00 2024 +0200 - graphieros

Commit: 500c5f1

  • Config - Updated skeleton options

Tue Aug 6 18:50:44 2024 +0200 - graphieros

Commit: f6acdbc

  • Improvement - VueUiParallelCoordinatePlot - Display a skeleton loader when dataset is not provided or empty

Tue Aug 6 18:50:18 2024 +0200 - graphieros

Commit: 0bd0f7b

  • Improvement - VueUiFlow - Display a skeleton loader when dataset is not provided or empty

Tue Aug 6 18:49:18 2024 +0200 - graphieros

Commit: fcc1b97

  • Improvement - VueUiSkeleton - Added flow and parallelCoordinate plot skeletons

Mon Aug 5 07:37:15 2024 +0200 - graphieros

Commit: 528293f

  • v2.2.49

Mon Aug 5 07:35:41 2024 +0200 - graphieros

Commit: 24f474f

  • Improvement - Use composable for print actions

Mon Aug 5 07:34:00 2024 +0200 - graphieros

Commit: fffb2a5

  • Fix - Hide zoom input on print

Sun Aug 4 11:35:10 2024 +0200 - graphieros

Commit: bc9e3fa

  • v2.2.48

Sun Aug 4 11:33:23 2024 +0200 - graphieros

Commit: b7c6b7c

  • Updated docs

Sun Aug 4 11:33:09 2024 +0200 - graphieros

Commit: d518f34

  • Dev environment - Exposed methods update

Sun Aug 4 11:32:01 2024 +0200 - graphieros

Commit: 5546c17

  • Improvement - VueUiXy - Exposed toggleTable & toggleLabels & toggleStack methods

Sun Aug 4 11:31:37 2024 +0200 - graphieros

Commit: 936862d

  • Improvement - VueUiXyCanvas - Exposed toggleTable & toggleLabels & toggleStack methods

Sun Aug 4 11:31:04 2024 +0200 - graphieros

Commit: 774385c

  • Improvement - VueUiWordCloud - Exposed toggleTable method

Sun Aug 4 11:30:44 2024 +0200 - graphieros

Commit: ad3d043

  • Improvement - VueUiWaffle - Exposed toggleTable method

Sun Aug 4 11:30:19 2024 +0200 - graphieros

Commit: 1b5156f

  • Improvement - VueUiVerticalBar - Exposed toggleTable & toggleSort methods

Sun Aug 4 11:29:47 2024 +0200 - graphieros

Commit: 4d3f4b9

  • Improvement - VueUiTreemap - Exposed toggleTable method

Sun Aug 4 11:29:21 2024 +0200 - graphieros

Commit: c3e9230

  • Improvement - VueUiStripPlot - Exposed toggleTable & toggleLabels methods

Sun Aug 4 11:28:53 2024 +0200 - graphieros

Commit: 3aa4c8a

  • Improvement - VueUiScatter - Exposed toggleTable method

Sun Aug 4 11:28:25 2024 +0200 - graphieros

Commit: 34da3e5

  • Improvement - VueUiRings - Exposed toggleTable method

Sun Aug 4 11:28:06 2024 +0200 - graphieros

Commit: 087f703

  • Improvement - VueUiRadar - Exposed toggleTable method

Sun Aug 4 11:27:47 2024 +0200 - graphieros

Commit: 708f2c2

  • Improvement - VueUiQuadrant - Exposed toggleTable & toggleLabels methods

Sun Aug 4 11:27:17 2024 +0200 - graphieros

Commit: 3cfe907

  • Improvement - VueUiParallelCoordinatePlot - Exposed toggleTable & toggleLabel methods

Sun Aug 4 11:26:48 2024 +0200 - graphieros

Commit: 93d12e8

  • Improvement - VueUiOnion - Exposed toggleTable method

Sun Aug 4 11:26:30 2024 +0200 - graphieros

Commit: 5bcd817

  • Improvement - VueUiNestedDonuts - Exposed toggleTable & toggleLabel methods

Sun Aug 4 11:26:07 2024 +0200 - graphieros

Commit: 4b9f463

  • Improvement - VueUiMoodRadar - Exposed toggleTable method

Sun Aug 4 11:25:45 2024 +0200 - graphieros

Commit: 4728e05

  • Improvement - VueUiMolecule - Exposed toggleTable method

Sun Aug 4 11:25:28 2024 +0200 - graphieros

Commit: e9f3ecc

  • Improvement - VueUiHeatmap - Exposed toggleTable method

Sun Aug 4 11:25:09 2024 +0200 - graphieros

Commit: 3bbe67f

  • Improvement - VueUiGalaxy - Exposed toggleTable method

Sun Aug 4 11:24:51 2024 +0200 - graphieros

Commit: fb886eb

  • Improvement - VueUiFlow - Exposed toggleTable method

Sun Aug 4 11:24:31 2024 +0200 - graphieros

Commit: 1f4f8fe

  • Improvement - VueUiDumbbell - Exposed toggleTable method

Sun Aug 4 11:24:00 2024 +0200 - graphieros

Commit: b8939e0

  • Improvement - VueUiDonut - Exposed toggleTable & toggleLabels methodsé

Sun Aug 4 11:23:40 2024 +0200 - graphieros

Commit: 46dde12

  • Improvement - VueUiDonutEvolution - Exposed toggleTable method

Sun Aug 4 11:23:18 2024 +0200 - graphieros

Commit: 38a1ea6

  • Improvement - VueUiChestnut - Exposed toggleTable method

Sun Aug 4 11:22:41 2024 +0200 - graphieros

Commit: 130d65f

  • Improvement - VueUiCandlestick - Exposed toggleTable method

Sun Aug 4 11:22:14 2024 +0200 - graphieros

Commit: 1b0127f

  • Improvement - VueUiAgePyramid - Added toggleTable exposed method

Sun Aug 4 11:21:49 2024 +0200 - graphieros

Commit: a5a03c2

  • Improvement - VueUi3dBar - Added toggleTable exposed method

Sun Aug 4 11:21:27 2024 +0200 - graphieros

Commit: 03fe064

  • Universal component - Added more exposed methods

Sun Aug 4 05:49:55 2024 +0200 - graphieros

Commit: ccded45

  • Internal lib - Added util to calc path length from d attr

Sun Aug 4 05:48:38 2024 +0200 - graphieros

Commit: c6fc7c8

  • Improvement - VueUiParallelCoordinatePlot - Improved css animation

Sat Aug 3 09:57:49 2024 +0200 - graphieros

Commit: ef17870

  • v2.2.47

Sat Aug 3 09:54:12 2024 +0200 - graphieros

Commit: 3ae3b0a

  • Types - VueUiQuickChart - Added animation types

Sat Aug 3 09:53:53 2024 +0200 - graphieros

Commit: a5c453a

  • Config - VueUiQuickChart - Added animations

Sat Aug 3 09:53:29 2024 +0200 - graphieros

Commit: 091374e

  • Dev environment - Updated VueUiQuickChart testing arena

Sat Aug 3 09:53:06 2024 +0200 - graphieros

Commit: 939c27e

  • Improvement - VueUiQuickChart - Added optional animations

Fri Aug 2 07:46:46 2024 +0200 - graphieros

Commit: 5da21c2

  • v2.2.46

Fri Aug 2 07:45:18 2024 +0200 - graphieros

Commit: e8348ce

  • Improvement - VueUiParallelCoordinatePlot - Improved @selectLegend & @selectDatapoint emits

Fri Aug 2 07:44:51 2024 +0200 - graphieros

Commit: b478132

  • Dev environment - Updated VueUiParallelCoordinatePlot testing arena

Thu Aug 1 07:34:50 2024 +0200 - graphieros

Commit: c547518

  • v2.2.45

Thu Aug 1 07:29:30 2024 +0200 - graphieros

Commit: 309d4d6

  • Build - Added VueUiParallelCoordinatePlot component

Thu Aug 1 07:28:54 2024 +0200 - graphieros

Commit: 90db4be

  • Updated docs

Thu Aug 1 07:28:42 2024 +0200 - graphieros

Commit: 00d99eb

  • Dev environment - Added VueUiParallelCoordinatePlot

Thu Aug 1 07:28:25 2024 +0200 - graphieros

Commit: c2461bb

  • Types - Added VueUiParallelCoordinatePlot types

Thu Aug 1 07:28:02 2024 +0200 - graphieros

Commit: ef492e0

  • Universal component - Added VueUiParallelCoordinatePlot support

Thu Aug 1 07:27:30 2024 +0200 - graphieros

Commit: bf8aed5

  • Themes - Added VueUiParallelCoordinatePlot themes

Thu Aug 1 07:27:12 2024 +0200 - graphieros

Commit: 2916241

  • Config - Added VueUiParallelCoordinatePlot config

Thu Aug 1 07:26:40 2024 +0200 - graphieros

Commit: 1ce5b31

  • Icons - Added chartParallelCoordinatePlot icon

Thu Aug 1 07:26:08 2024 +0200 - graphieros

Commit: 8a35096

  • Dev environment - Updated VueUiIcon testing arena

Thu Aug 1 07:25:40 2024 +0200 - graphieros

Commit: 8d34e53

  • Dev environment - Added VueUiParallelCoordinatePlot testing arena

Thu Aug 1 07:25:13 2024 +0200 - graphieros

Commit: fd0cf25

  • New feature - VueUiParallelCoordinatePlot - Added new component

Sun Jul 28 09:21:40 2024 +0200 - graphieros

Commit: 80ba605

  • v2.2.44

Sun Jul 28 09:20:12 2024 +0200 - graphieros

Commit: 6bfb7a7

  • Dev environment - Updated VueUiOnion testing arena

Sun Jul 28 09:15:33 2024 +0200 - graphieros

Commit: c101186

  • Types - VueUiOnion - Added useStartAnimation & maxThickness types

Sun Jul 28 09:14:12 2024 +0200 - graphieros

Commit: 3318191

  • Config - VueUiOnion - Added max track thickness config option

Sun Jul 28 09:13:43 2024 +0200 - graphieros

Commit: aad8c3d

  • Improvement - VueUiOnion - Added optional start animation, added max track thickness config option

Fri Jul 26 06:39:23 2024 +0200 - graphieros

Commit: ea9ac9a

  • v2.2.43

Fri Jul 26 06:35:45 2024 +0200 - graphieros

Commit: bb72c36

  • Fix - VueUiNestedDonuts - Fixed error when unsegregating series

Wed Jul 24 06:40:43 2024 +0200 - graphieros

Commit: 48eabad

  • v2.2.42

Wed Jul 24 06:36:38 2024 +0200 - graphieros

Commit: 70dbe79

  • Dev environment - Updated VueUiNestedDonuts testing arena

Wed Jul 24 06:36:20 2024 +0200 - graphieros

Commit: 4443e78

  • Dev environment - Updated VueUiDonut testing arena

Wed Jul 24 06:35:58 2024 +0200 - graphieros

Commit: 53fc202

  • Fix - VueUiNestedDonuts - Fixed chart not updating when dataset is mutated

Wed Jul 24 06:35:35 2024 +0200 - graphieros

Commit: 55a7ce6

  • Fix - VueUiDonut - Fixed chart not updating when dataset is mutated

Tue Jul 23 06:33:10 2024 +0200 - graphieros

Commit: 90594d1

  • v2.2.41

Tue Jul 23 06:31:42 2024 +0200 - graphieros

Commit: c31e51b

  • Dev environment - Updated VueUiDashboard testing arena

Tue Jul 23 06:30:45 2024 +0200 - graphieros

Commit: 38640c9

  • New feature - VueDataUi - Applied toggleLock exposed method for VueUiDashboard

Tue Jul 23 06:29:44 2024 +0200 - graphieros

Commit: 9524426

  • Types - VueUiDashboardConfig - Added locked boolean type

Tue Jul 23 06:29:03 2024 +0200 - graphieros

Commit: 530e331

  • Config - VueUiDashboard - Added lock option

Tue Jul 23 06:28:25 2024 +0200 - graphieros

Commit: 0c9541c

  • New feature - VueUiDashboard - Added a togglable lock config option

Mon Jul 22 07:27:31 2024 +0200 - graphieros

Commit: e22f03e

  • v2.2.40

Mon Jul 22 07:26:08 2024 +0200 - graphieros

Commit: dcaa549

  • Improvement - VueUiScreenshot - Centered starting position

Fri Jul 19 16:24:55 2024 +0200 - graphieros

Commit: 98bc3d6

  • v2.2.39

Fri Jul 19 16:23:18 2024 +0200 - graphieros

Commit: 6a25dc8

  • Dev environment - Added VueUiFlow import

Fri Jul 19 16:22:48 2024 +0200 - graphieros

Commit: 1edab26

  • New feature - VueUiFlow - Added new component

Fri Jul 19 16:22:22 2024 +0200 - graphieros

Commit: aedcd6f

  • Dev environment - Added VueUiFlow

Fri Jul 19 16:21:59 2024 +0200 - graphieros

Commit: 14629f0

  • Types - Added VueUiFlow types

Fri Jul 19 16:21:40 2024 +0200 - graphieros

Commit: 31eb5ad

  • New feature - VueUiIcon - Added new chartFlow icon

Fri Jul 19 16:21:15 2024 +0200 - graphieros

Commit: 9d1377d

  • Improvement - VueDataUi - Added support for VueUiFlow new component

Fri Jul 19 16:20:40 2024 +0200 - graphieros

Commit: da71a8a

  • Dev environment - Added VueUiFlow testing arena

Fri Jul 19 16:20:25 2024 +0200 - graphieros

Commit: 3207853

  • Dev environment - Updated VueUiIcon testing arena

Fri Jul 19 16:19:42 2024 +0200 - graphieros

Commit: 5b3a8af

  • Themes - Added VueUiFlow themes

Fri Jul 19 16:19:24 2024 +0200 - graphieros

Commit: 349f1b2

  • Config - Added VueUiFlow config

Fri Jul 19 16:18:53 2024 +0200 - graphieros

Commit: dc83ff7

  • Updated docs

Mon Jul 15 18:14:39 2024 +0200 - graphieros

Commit: 641e78f

  • v2.2.38

Mon Jul 15 18:13:19 2024 +0200 - graphieros

Commit: 6a97494

  • Fixed cloneCanvas default size

Mon Jul 15 18:10:37 2024 +0200 - graphieros

Commit: 35686bd

  • v2.2.37

Mon Jul 15 18:09:12 2024 +0200 - graphieros

Commit: 9273374

  • Fix - VueUiXyCanvas - Fixed harmless console error when loading chart in certain cases

Mon Jul 15 17:57:45 2024 +0200 - graphieros

Commit: a71205e

  • v2.2.36

Mon Jul 15 17:55:56 2024 +0200 - graphieros

Commit: 812e2a5

  • Improvement - VueUiXyCanvas - Added skeleton loader fallback when dataset is absent or empty

Tue Jul 9 17:07:28 2024 +0200 - graphieros

Commit: d80e12b

  • Canvas lib - Avoid canvas error when loading on slow runtimes

Tue Jul 9 10:41:09 2024 +0200 - graphieros

Commit: 6409788

  • v2.2.35

Tue Jul 9 10:39:40 2024 +0200 - graphieros

Commit: 26140f5

  • Fix - VueUiXyCanvas - Fixed chart rendering issue when datapoint length > 200

Tue Jul 9 10:30:31 2024 +0200 - graphieros

Commit: ce93379

  • v2.2.34

Tue Jul 9 10:29:03 2024 +0200 - graphieros

Commit: caf906a

  • Fix - VueUiXyCanvas - Fixed various issues occuring in stack mode when values are negative

Tue Jul 9 10:28:32 2024 +0200 - graphieros

Commit: 0188f61

  • Canvas utils - Apply default min values to gradient func when start and end coordinates are boolish

Tue Jul 9 08:19:53 2024 +0200 - graphieros

Commit: e01dd79

  • v2.2.33

Tue Jul 9 08:18:31 2024 +0200 - graphieros

Commit: 4245501

  • Fixed toggle stack issues

Tue Jul 9 08:09:22 2024 +0200 - graphieros

Commit: c0ae94f

  • v2.2.32

Tue Jul 9 08:07:36 2024 +0200 - graphieros

Commit: f2266b8

  • Types - Added autoScaling attr on VueUiXyCanvasDatasetItem

Tue Jul 9 06:32:50 2024 +0200 - graphieros

Commit: 1f20d83

  • Improvement - VueUiXyCanvas - Stack mode : added individual height support

Tue Jul 9 06:30:24 2024 +0200 - graphieros

Commit: beecfdf

  • Dev environment - Updated VueUiXyCanvas testing arena

Tue Jul 9 06:29:30 2024 +0200 - graphieros

Commit: e2eeab4

  • Refactoring - Use common utility function

Tue Jul 9 06:28:36 2024 +0200 - graphieros

Commit: aee4926

  • Types - Updated VueUiXyCanvas config types

Tue Jul 9 06:27:57 2024 +0200 - graphieros

Commit: dbd25e9

  • Tests - Added common method for VueUiXy and VueUiXyCanvas

Tue Jul 9 06:27:00 2024 +0200 - graphieros

Commit: 843bfd6

  • Config - Updated VueUiXyCanvas config

Mon Jul 8 14:40:57 2024 +0200 - graphieros

Commit: ef0dac0

  • v2.2.31

Mon Jul 8 14:39:34 2024 +0200 - graphieros

Commit: cbcfde8

  • Fix - VueUiXy - Fixed console warning wrongly displayed

Sun Jul 7 11:16:19 2024 +0200 - graphieros

Commit: 6b80447

  • v2.2.30

Sun Jul 7 11:14:51 2024 +0200 - graphieros

Commit: 0b15be4

  • Fix - VueUiXy - Set pointer events to none on selector (highlighter.useLine) to avoid tooltip blinking effect when hovering right on the selector

Sun Jul 7 09:11:21 2024 +0200 - graphieros

Commit: 5fb6e2a

  • v2.2.29

Sun Jul 7 08:48:30 2024 +0200 - graphieros

Commit: e770b04

  • Dev environment - Updated VueUiQuickChart testing arena

Sun Jul 7 08:48:10 2024 +0200 - graphieros

Commit: 8a1a3aa

  • Dev environment - Updated VueUiNestedDonuts testing arena

Sun Jul 7 08:47:50 2024 +0200 - graphieros

Commit: 92270b1

  • Config - Updated with shadow options for VueUiNestedDonuts and VueUiQuickChart

Sun Jul 7 08:47:13 2024 +0200 - graphieros

Commit: c9aaccb

  • Types - Updated with shadow options for VueUiNestedDonuts and VueUiQuickChart

Sun Jul 7 08:46:40 2024 +0200 - graphieros

Commit: fc8326e

  • New feature - VueUiQuickChart - Added shadow config options for donut

Sun Jul 7 08:46:11 2024 +0200 - graphieros

Commit: 73b33eb

  • New feature - VueUiNestedDonuts - Added shadow config options

Sun Jul 7 08:45:42 2024 +0200 - graphieros

Commit: b87494b

  • Fix - VueUiIcon - Fixed shape fill on certain icons

Sun Jul 7 08:45:00 2024 +0200 - graphieros

Commit: 823a3c6

  • Improvement - VueUiXy - Line and plot types plots radius increase on hover

Sat Jul 6 17:48:06 2024 +0200 - graphieros

Commit: 0f1307f

  • v2.2.28

Sat Jul 6 17:46:27 2024 +0200 - graphieros

Commit: b2598b0

  • Improved getPalette method to return theme palettes

Sat Jul 6 17:45:41 2024 +0200 - graphieros

Commit: cb75e36

  • Dev environment - Updated VueUiIcon testing arena

Sat Jul 6 17:45:21 2024 +0200 - graphieros

Commit: e64df3b

  • Dev environment - Updated VueUiDonut testing arena

Sat Jul 6 17:45:00 2024 +0200 - graphieros

Commit: 70ee967

  • New feature - VueUiDonut - Added shadow config option

Sat Jul 6 17:44:26 2024 +0200 - graphieros

Commit: 1f389fa

  • Icons - Added window icon

Sat Jul 6 17:44:01 2024 +0200 - graphieros

Commit: 5fff154

  • Config - VueUiDonut - Added shadow options

Sat Jul 6 17:43:39 2024 +0200 - graphieros

Commit: 47f3b59

  • Types - VueUiDonut - Added types for shadow config options

Sat Jul 6 09:44:25 2024 +0200 - graphieros

Commit: 595fc3e

  • v2.2.27

Sat Jul 6 09:40:14 2024 +0200 - graphieros

Commit: 8636582

  • Improvement - VueUiWordCloud - Improved word packing

Sat Jul 6 09:26:05 2024 +0200 - graphieros

Commit: 67dc4dc

  • Internal - Slicer component - Fixed width of highlighted segment

Thu Jul 4 08:05:32 2024 +0200 - graphieros

Commit: 35059c8

  • v2.2.26

Thu Jul 4 08:03:48 2024 +0200 - graphieros

Commit: 4ffefdd

  • Improvement - VueUiXy - Added stacked mode toggle user action

Wed Jul 3 17:37:52 2024 +0200 - graphieros

Commit: cd2574e

  • v2.2.25

Wed Jul 3 17:36:26 2024 +0200 - graphieros

Commit: a90d39b

  • Improvement - VueUiXyCanvas - Improved csv generation

Wed Jul 3 06:35:16 2024 +0200 - graphieros

Commit: 3ec251e

  • v2.2.24

Wed Jul 3 06:33:36 2024 +0200 - graphieros

Commit: 22aa6fc

  • Improvement - VueUiXyCanvas - Improved tooltip styling

Tue Jul 2 20:04:21 2024 +0200 - graphieros

Commit: 15043cb

  • v2.2.23

Tue Jul 2 20:02:49 2024 +0200 - graphieros

Commit: 4efa4d4

  • Improved VueUiXyCanvas scaling

Tue Jul 2 08:03:01 2024 +0200 - graphieros

Commit: a865ccd

  • v2.2.22

Tue Jul 2 08:01:40 2024 +0200 - graphieros

Commit: 34fd552

  • VueUiXyCanvas - Minor scaling fixes

Tue Jul 2 07:07:01 2024 +0200 - graphieros

Commit: a70d453

  • v2.2.21

Tue Jul 2 07:05:35 2024 +0200 - graphieros

Commit: 764aeea

  • VueUiXyCanvas - Fixed y label colors config option not applied

Tue Jul 2 06:20:51 2024 +0200 - graphieros

Commit: f9afdea

  • v2.2.20

Tue Jul 2 06:18:06 2024 +0200 - graphieros

Commit: 73e94cd

  • Documentation - Updated with VueUiXyCanvas

Tue Jul 2 06:17:30 2024 +0200 - graphieros

Commit: b510fac

  • Feature - VueUiXyCanvas - Added legend slot

Mon Jul 1 18:08:57 2024 +0200 - graphieros

Commit: 1b9d136

  • Added VueUiXyCanvas component export

Mon Jul 1 18:08:31 2024 +0200 - graphieros

Commit: a83f306

  • Dev environment - Added VueUiXyCanvas component

Mon Jul 1 18:07:59 2024 +0200 - graphieros

Commit: 9154c9a

  • Dev environment - Updated box component

Mon Jul 1 18:07:41 2024 +0200 - graphieros

Commit: 064b7fc

  • Dev environment - Updated VueUiXyCanvas testing arena

Mon Jul 1 18:07:13 2024 +0200 - graphieros

Commit: c082252

  • Dev environment - Updated VueUiIcon testing arena

Mon Jul 1 18:06:32 2024 +0200 - graphieros

Commit: 07a4925

  • New feature - Added finalized VueUiXyCanvas component

Mon Jul 1 18:05:39 2024 +0200 - graphieros

Commit: 9536515

  • Improvement - VueDataUi - Added VueUiXyCanvas support

Mon Jul 1 18:05:04 2024 +0200 - graphieros

Commit: 433110c

  • Types - Added VueUiXyCanvas types

Mon Jul 1 18:04:32 2024 +0200 - graphieros

Commit: aa0b6c8

  • User options - Added stack action

Mon Jul 1 18:03:57 2024 +0200 - graphieros

Commit: f492e77

  • Icons - Added stack and unstack iconsé

Mon Jul 1 18:03:33 2024 +0200 - graphieros

Commit: 565f15f

  • Themes - Added VueUiXyCanvas themes

Mon Jul 1 18:03:17 2024 +0200 - graphieros

Commit: 7b76b6d

  • Updated config

Mon Jul 1 18:02:34 2024 +0200 - graphieros

Commit: 7c24be0

  • Internal lib - Added util functions for canvas

Fri Jun 28 09:58:00 2024 +0200 - graphieros

Commit: 1eaf7f0

  • v2.2.19

Fri Jun 28 09:56:31 2024 +0200 - graphieros

Commit: 841cbfb

  • Improvement - VueUiOnion - Hide : in datalabels and legend when no serie name is provided

Fri Jun 28 09:52:29 2024 +0200 - graphieros

Commit: c3c70d0

  • Experiments - xy canvas component (WIP)

Tue Jun 25 08:41:03 2024 +0200 - graphieros

Commit: 0942338

  • Updated readme

Tue Jun 25 08:39:15 2024 +0200 - graphieros

Commit: cd1b5e6

  • Updated readme

Tue Jun 25 07:20:46 2024 +0200 - graphieros

Commit: bd18366

  • v2.2.18

Tue Jun 25 07:19:16 2024 +0200 - graphieros

Commit: 6c3f694

  • Fix - VueUiWheel - Fixed component reactivity when value changes

Tue Jun 25 07:18:59 2024 +0200 - graphieros

Commit: 0d6f422

  • Fix - VueUiTiremarks - Fixed component reactivity when value changes

Tue Jun 25 07:18:30 2024 +0200 - graphieros

Commit: c920973

  • Fix - VueUiSparkgauge - Fixed component reactivity when value changes

Tue Jun 25 07:18:10 2024 +0200 - graphieros

Commit: 6d4487e

  • Fix - VueUiGauge - Fixed component reactivity when value changes

Tue Jun 25 07:17:33 2024 +0200 - graphieros

Commit: 907042b

  • Dev environment - Updated arena with tests for gauge reactivity

Tue Jun 11 06:24:29 2024 +0000 - dependabot[bot]

Commit: 2716d0e

  • Bump braces from 3.0.2 to 3.0.3

Tue Jun 11 08:23:57 2024 +0200 - graphieros

Commit: 1359944

  • v2.2.17

Tue Jun 11 08:22:25 2024 +0200 - graphieros

Commit: b9e36d3

  • Refactoring - Removed legacy useDiv config attribute

Mon Jun 10 07:16:54 2024 +0200 - graphieros

Commit: 3c6ed1d

  • v2.2.16

Mon Jun 10 07:15:25 2024 +0200 - graphieros

Commit: 23fc82a

  • Improvement - VueUiWordCloud - Added optional callback parameter to createWordCloudDatasetFromPlainText function to format text output

Sun Jun 9 17:51:49 2024 +0200 - graphieros

Commit: 48651c0

  • v2.2.15

Sun Jun 9 17:48:16 2024 +0200 - graphieros

Commit: 14bac16

  • Improvement - VueUiWordCloud - Improved multi language support for createWordCloudDatasetFromPlainText method

Sun Jun 9 09:14:38 2024 +0200 - graphieros

Commit: b1a9054

  • v2.2.14

Sun Jun 9 09:13:14 2024 +0200 - graphieros

Commit: 1f6d1f5

  • VueUiWordCloud - Fixed css animation config option not applied

Sun Jun 9 08:49:57 2024 +0200 - graphieros

Commit: 1fea456

  • v2.2.13

Sun Jun 9 08:48:30 2024 +0200 - graphieros

Commit: b0e2823

  • VueUiWordCloud - Removed max width on svg

Sun Jun 9 08:32:32 2024 +0200 - graphieros

Commit: bd13871

  • v2.2.12

Sun Jun 9 08:29:58 2024 +0200 - graphieros

Commit: b2f0e3b

  • Internal lib - Added method to create a word cloud dataset from plain text

Sun Jun 9 08:28:58 2024 +0200 - graphieros

Commit: 9c7b945

  • New feature - VueUiWordCloud - Added new component

Sun Jun 9 08:27:25 2024 +0200 - graphieros

Commit: c5271fc

  • Dev environment - Added VueUiWordCloud testing arena

Sun Jun 9 08:26:35 2024 +0200 - graphieros

Commit: 9eda4f3

  • Updated docs

Sun Jun 9 08:26:17 2024 +0200 - graphieros

Commit: 39e38d5

  • New feat. - Universal component - Added VueUiWordCloud

Sat Jun 8 09:52:46 2024 +0200 - graphieros

Commit: 69a1807

  • v2.2.11

Sat Jun 8 09:46:26 2024 +0200 - graphieros

Commit: 099174f

  • Refactoring - Removed unused prop from UserOption

Sat Jun 8 09:45:34 2024 +0200 - graphieros

Commit: 3fb97c4

  • Refactoring - Removed some useless userOptions config attributes

Sat Jun 8 09:24:56 2024 +0200 - graphieros

Commit: b607eaa

  • Refactoring - Optimized .d.ts types

Sat Jun 8 06:48:39 2024 +0200 - graphieros

Commit: 743e81f

  • v2.2.10

Sat Jun 8 06:46:58 2024 +0200 - graphieros

Commit: ca2ad7d

  • Improvement - VueUiXy - Added tooltip border config options

Sat Jun 8 06:46:39 2024 +0200 - graphieros

Commit: a298dfd

  • Improvement - VueUiWaffle - Added tooltip border config options

Sat Jun 8 06:46:21 2024 +0200 - graphieros

Commit: 3891286

  • Improvement - VueUiVerticalBar - Added tooltip border config options

Sat Jun 8 06:45:59 2024 +0200 - graphieros

Commit: ff8ca3b

  • Improvement - VueUiTreemap - Added tooltip border config options

Sat Jun 8 06:45:40 2024 +0200 - graphieros

Commit: 96a0b8c

  • Improvement - VueUiStripPlot - Added tooltip border config options

Sat Jun 8 06:45:11 2024 +0200 - graphieros

Commit: 137bfcf

  • Improvement - VueUiScatter - Added tooltip border config options

Sat Jun 8 06:44:55 2024 +0200 - graphieros

Commit: b2be968

  • Improvement - VueUiRings - Added tooltip border config options

Sat Jun 8 06:44:36 2024 +0200 - graphieros

Commit: 4629442

  • Improvement - VueUiRadar - Added tooltip border config options

Sat Jun 8 06:44:14 2024 +0200 - graphieros

Commit: 544bee4

  • Improvement - VueUiQuickChart - Added tooltip border config options

Sat Jun 8 06:43:53 2024 +0200 - graphieros

Commit: 93cf800

  • Improvement - VueUiQuadrant - Added tooltip border config options

Sat Jun 8 06:43:34 2024 +0200 - graphieros

Commit: fe0f334

  • Improvement - VueUiOnion - Added tooltip border config options

Sat Jun 8 06:43:16 2024 +0200 - graphieros

Commit: d639d08

  • Improvement - VueUiNestedDonuts - Added tooltip border config options

Sat Jun 8 06:42:46 2024 +0200 - graphieros

Commit: 2871658

  • Improvement - VueUiMolecule - Added tooltip border config options

Sat Jun 8 06:41:00 2024 +0200 - graphieros

Commit: eadbbbf

  • Improvement - VueUiHeatmap - Added tooltip border config options

Sat Jun 8 06:40:36 2024 +0200 - graphieros

Commit: f829cb1

  • Improvement - VueUiGalaxy - Added tooltip border config options

Sat Jun 8 06:40:17 2024 +0200 - graphieros

Commit: 437dffa

  • Improvement - VueUiDonut - Added tooltip border config options

Sat Jun 8 06:39:52 2024 +0200 - graphieros

Commit: a4f43d3

  • Improvement - VueUiCandlestick - Added tooltip border config options

Sat Jun 8 06:39:26 2024 +0200 - graphieros

Commit: 067937e

  • Improvement - VueUiAgePyramid - Added tooltip border config options

Sat Jun 8 06:33:04 2024 +0200 - graphieros

Commit: fd6a349

  • Config & types - Added tooltip border attributes

Sat Jun 8 06:30:08 2024 +0200 - graphieros

Commit: 9d2eaa3

  • Tooltip - Added props for border styling

Thu Jun 6 20:39:04 2024 +0200 - graphieros

Commit: 89d17d7

  • Updated tests

Thu Jun 6 16:56:11 2024 +0200 - graphieros

Commit: 26d3c1f

  • v2.2.9

Thu Jun 6 16:52:17 2024 +0200 - graphieros

Commit: 961bfd6

  • Updated docs

Thu Jun 6 13:42:38 2024 +0200 - graphieros

Commit: d7fed1b

  • Dev environment - Updated arenas with themes

Thu Jun 6 13:41:51 2024 +0200 - graphieros

Commit: a00a3f7

  • New feature - VueUiXy - Implemented themes

Thu Jun 6 13:41:36 2024 +0200 - graphieros

Commit: 0ca39e2

  • New feature - VueUiWheel - Implemented themes

Thu Jun 6 13:41:20 2024 +0200 - graphieros

Commit: 53bace4

  • New feature - VueUiWaffle - Implemented themes

Thu Jun 6 13:41:06 2024 +0200 - graphieros

Commit: 9f1ded4

  • New feature - VueUiVerticalBar - Implemented themes

Thu Jun 6 13:40:33 2024 +0200 - graphieros

Commit: d2a8c81

  • New feature - VueUiVerticalBar - Implemented themes

Thu Jun 6 13:40:11 2024 +0200 - graphieros

Commit: b09d93e

  • New feature - VueUiTiremarks - Implemented themes

Thu Jun 6 13:39:52 2024 +0200 - graphieros

Commit: 4cf1c75

  • New feature - VueUiThermometer - Implemented themes

Thu Jun 6 13:39:37 2024 +0200 - graphieros

Commit: 0921280

  • New feature - VueUiTableSparkline - Implemented themes

Thu Jun 6 13:39:19 2024 +0200 - graphieros

Commit: 99b6d73

  • New feature - VueUiTableHeatmap - Implemented themes

Thu Jun 6 13:38:58 2024 +0200 - graphieros

Commit: b64b08c

  • New feature - VueUiStripPlot - Implemented themes

Thu Jun 6 13:38:22 2024 +0200 - graphieros

Commit: e03482b

  • New feature - VueUiSparkStackbar - Implemented themes

Thu Jun 6 13:38:03 2024 +0200 - graphieros

Commit: 4f1af1e

  • New feature - VueUiSparkline - Implemented themes

Thu Jun 6 13:37:49 2024 +0200 - graphieros

Commit: 3cb6250

  • New feature - VueUiSparkHistogram - Implemented themes

Thu Jun 6 13:37:29 2024 +0200 - graphieros

Commit: 50d953e

  • New feature - VueUiSparkgauge - Implemented themes

Thu Jun 6 13:37:09 2024 +0200 - graphieros

Commit: f065532

  • New feature - VueUiSparkbar - Implemented themes

Thu Jun 6 13:36:53 2024 +0200 - graphieros

Commit: cfa78eb

  • New feature - VueUiSparkTrend - Implemented themes

Thu Jun 6 13:36:34 2024 +0200 - graphieros

Commit: 5e9d687

  • New feature - VueUiScatter - Implemented themes

Thu Jun 6 13:36:16 2024 +0200 - graphieros

Commit: f3eb910

  • New feature - VueUiRings - Implemented themes

Thu Jun 6 13:35:59 2024 +0200 - graphieros

Commit: f2d0807

  • New feature - VueUiRelationCircle - Implemented themes

Thu Jun 6 13:35:30 2024 +0200 - graphieros

Commit: 3589fdc

  • New feature - VueUiRadar - Implemented themes

Thu Jun 6 13:35:13 2024 +0200 - graphieros

Commit: 904aa61

  • New feature - VueUiQuickChart - Implemented themes

Thu Jun 6 13:34:59 2024 +0200 - graphieros

Commit: 2b29e5d

  • New feature - VueUiQuadrant - Implemented themes

Thu Jun 6 13:34:43 2024 +0200 - graphieros

Commit: d4ee878

  • New feature - VueUiOnion - Implemented themes

Thu Jun 6 13:34:26 2024 +0200 - graphieros

Commit: e1d4ab9

  • New feature - VueUiNestedDonuts - Implemented themes

Thu Jun 6 13:34:08 2024 +0200 - graphieros

Commit: e8636b5

  • New feature - VueUiMoodRadar - Implemented themes

Thu Jun 6 13:33:48 2024 +0200 - graphieros

Commit: 2405ee6

  • New feature - VueUiMolecule - Implemented themes

Thu Jun 6 13:33:25 2024 +0200 - graphieros

Commit: 642b21d

  • New feature - VueUiHeatmap - Implemented themes

Thu Jun 6 13:33:09 2024 +0200 - graphieros

Commit: b368c77

  • New feature - VueUiGauge - Implemented themes

Thu Jun 6 13:32:50 2024 +0200 - graphieros

Commit: c3dd678

  • New feature - VueUiGalaxy - Implemented themes

Thu Jun 6 13:32:33 2024 +0200 - graphieros

Commit: fdb8d9a

  • New feature - VueUiDumbbell - Implemented themes

Thu Jun 6 13:32:12 2024 +0200 - graphieros

Commit: 44f71de

  • New feature - VueUiDonut - Implemented themes

Thu Jun 6 13:31:53 2024 +0200 - graphieros

Commit: 95b4e4f

  • New feature - VueUiDonutEvolution - Implemented themes

Thu Jun 6 13:31:32 2024 +0200 - graphieros

Commit: 49690e7

  • New feature - VueUiChestnut - Implemented themes

Thu Jun 6 13:31:10 2024 +0200 - graphieros

Commit: e0779df

  • New feature - VueUiCandlestick - Implemented themes

Thu Jun 6 13:30:47 2024 +0200 - graphieros

Commit: f9b6b52

  • New feature - VueUiAgePyramid - Implemented themes

Thu Jun 6 13:30:25 2024 +0200 - graphieros

Commit: e7e2e7d

  • New feature - VueUi3dBar - Implemented themes

Thu Jun 6 13:29:21 2024 +0200 - graphieros

Commit: 273071d

  • Updated configs and internal lib

Thu Jun 6 13:28:43 2024 +0200 - graphieros

Commit: 2daea5d

  • Added themes configs

Tue Jun 4 15:50:39 2024 +0200 - graphieros

Commit: afd68a7

  • v2.2.8

Tue Jun 4 15:46:55 2024 +0200 - graphieros

Commit: d8b4c19

  • Fix - VueUiXy - Place zero line after bars and before lines and plots stacking context

Tue Jun 4 15:32:04 2024 +0200 - graphieros

Commit: 259219e

  • v2.2.7

Tue Jun 4 15:26:38 2024 +0200 - graphieros

Commit: 2733cb5

  • Dev environment - Updated VueUiXy arena

Tue Jun 4 15:26:24 2024 +0200 - graphieros

Commit: 9ce5202

  • Improvement - VueUiXy - Added config options to hide or show axes and zero lines

Tue Jun 4 08:47:17 2024 +0200 - graphieros

Commit: b11e340

  • v2.2.6

Tue Jun 4 08:40:04 2024 +0200 - graphieros

Commit: c72a4f4

  • Updated docs

Tue Jun 4 08:28:58 2024 +0200 - graphieros

Commit: fa01d33

  • Dev environment - Updated arena

Tue Jun 4 08:28:19 2024 +0200 - graphieros

Commit: aab3eff

  • New feature - VueUiXy - Added customPalette

Tue Jun 4 08:28:03 2024 +0200 - graphieros

Commit: 417e53c

  • New feature - VueUiWaffle - Added customPalette

Tue Jun 4 08:27:50 2024 +0200 - graphieros

Commit: 1891c26

  • New feature - VueUiVerticalBar - Added customPalette

Tue Jun 4 08:27:31 2024 +0200 - graphieros

Commit: 469b2f4

  • New feature - VueUiTreemap - Added customPalette

Tue Jun 4 08:27:17 2024 +0200 - graphieros

Commit: df643e2

  • New feature - VueUiThermometer - Added customPalette

Tue Jun 4 08:27:01 2024 +0200 - graphieros

Commit: 6dee68a

  • New feature - VueUiTableSparkline - Added customPalette

Tue Jun 4 08:26:43 2024 +0200 - graphieros

Commit: ea86e78

  • New feature - VueUiStripPlot - Added customPalette

Tue Jun 4 08:26:28 2024 +0200 - graphieros

Commit: 72437f4

  • New feature - VueUiSparkStackbar - Added customPalette

Tue Jun 4 08:26:12 2024 +0200 - graphieros

Commit: cefaea5

  • New feature - VueUiSparkbar - Added customPalette

Tue Jun 4 08:25:56 2024 +0200 - graphieros

Commit: 82c370c

  • New feature - VueUiScatter - Added customPalette

Tue Jun 4 08:25:41 2024 +0200 - graphieros

Commit: 0d9ac13

  • New feature - VueUiRings - Added customPalette

Tue Jun 4 08:25:27 2024 +0200 - graphieros

Commit: 7183c5f

  • New featur - VueUiRelationCircle - Added customPalette

Tue Jun 4 08:25:10 2024 +0200 - graphieros

Commit: d8a55b2

  • New feature - VueUiRadar - Added customPalette

Tue Jun 4 08:24:53 2024 +0200 - graphieros

Commit: b2307e3

  • New feature - VueUiQuickChart - Added customPalette

Tue Jun 4 08:24:39 2024 +0200 - graphieros

Commit: 959f111

  • New feature - VueUiQuadrant - Added customPalette

Tue Jun 4 08:24:24 2024 +0200 - graphieros

Commit: 991fbda

  • New feature - VueUiOnion - Added customPalette

Tue Jun 4 08:24:06 2024 +0200 - graphieros

Commit: ceaf4bd

  • New feature - VueUiNestedDonuts - Added customPalette

Tue Jun 4 08:23:51 2024 +0200 - graphieros

Commit: fe34517

  • New feature - VueUiMolecule - Added customPalette

Tue Jun 4 08:23:35 2024 +0200 - graphieros

Commit: 2e923f3

  • New feature - VueUiGauge - Added customPalette

Tue Jun 4 08:23:16 2024 +0200 - graphieros

Commit: a7b5d0b

  • New feature - VueUiGalaxy - Added customPalette

Tue Jun 4 08:22:59 2024 +0200 - graphieros

Commit: 64549a9

  • New feature - VueUiDonut - Added customPalette

Tue Jun 4 08:22:40 2024 +0200 - graphieros

Commit: 0297fbb

  • New feature - VueUiDonutEvolution - Added customPalette

Tue Jun 4 08:22:19 2024 +0200 - graphieros

Commit: a2fbb2d

  • New feature - VueUiChestnut - Added customPalette

Tue Jun 4 08:22:02 2024 +0200 - graphieros

Commit: 2be8fb6

  • New feature - VueUi3dBar - Added customPalette

Tue Jun 4 08:20:30 2024 +0200 - graphieros

Commit: e8fe784

  • Config - Updated config & types with customPalette attributes

Tue Jun 4 08:19:57 2024 +0200 - graphieros

Commit: 44d6f53

  • Internal lib - Added custom palette color conversion utility function

Tue Jun 4 06:29:13 2024 +0200 - graphieros

Commit: 0eafae1

  • Updated package-lock

Mon Jun 3 17:27:18 2024 +0200 - graphieros

Commit: 7a1f403

  • v2.2.5

Mon Jun 3 17:23:32 2024 +0200 - graphieros

Commit: 8970de0

  • Dev environment - Updated VueUiXy arena

Mon Jun 3 17:23:16 2024 +0200 - graphieros

Commit: e01086b

  • Updated docs

Mon Jun 3 17:23:00 2024 +0200 - graphieros

Commit: 6ef668d

  • Fix - VueUiXy - Prevented highlight area from overflowing on the left side of the chart when zooming

Mon Jun 3 08:06:32 2024 +0200 - graphieros

Commit: 237bacc

  • v2.2.4

Mon Jun 3 08:04:43 2024 +0200 - graphieros

Commit: c026746

  • Fixed data table accordion background color

Mon Jun 3 07:38:38 2024 +0200 - graphieros

Commit: b84a5df

  • v2.2.3

Mon Jun 3 07:36:45 2024 +0200 - graphieros

Commit: 4c36188

  • Improvement - VueUiXy - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:36:25 2024 +0200 - graphieros

Commit: f3d9681

  • Improvement - VueUiWaffle - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:36:06 2024 +0200 - graphieros

Commit: 72b9c1a

  • Improvement - VueUiVerticalBar - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:35:46 2024 +0200 - graphieros

Commit: c29227c

  • Improvement - VueUiTreemap - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:35:27 2024 +0200 - graphieros

Commit: 3f38eab

  • Improvement - VueUiStripPlot - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:35:05 2024 +0200 - graphieros

Commit: 50a2340

  • Improvement - VueUiScatter - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:34:47 2024 +0200 - graphieros

Commit: 870a707

  • Improvement - VueUiRings - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:34:24 2024 +0200 - graphieros

Commit: c04450b

  • Improvement - VueUiRadar - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:34:05 2024 +0200 - graphieros

Commit: 968e5c9

  • Improvement - VueUiQuadrant - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:33:47 2024 +0200 - graphieros

Commit: cc14968

  • Improvement - VueUiOnion - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:33:27 2024 +0200 - graphieros

Commit: 511bf5c

  • Improvement - VueUiNestedDonuts - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:33:07 2024 +0200 - graphieros

Commit: 38a69e1

  • Improvement - VueUiMoodRadar - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:32:47 2024 +0200 - graphieros

Commit: 6157f5e

  • Improvement - VueUiMolecule - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:32:28 2024 +0200 - graphieros

Commit: df767f9

  • Improvement - VueUiHeatmap - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:32:08 2024 +0200 - graphieros

Commit: 9916555

  • Improvement - VueUiGalaxy - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:31:51 2024 +0200 - graphieros

Commit: 1d63587

  • Improvement - VueUiDumbbell - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:31:31 2024 +0200 - graphieros

Commit: 7099212

  • Improvement - VueUiDonut - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:31:13 2024 +0200 - graphieros

Commit: 9a8ba73

  • Improvement - VueUiDonutEvolution - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:30:49 2024 +0200 - graphieros

Commit: ee64c65

  • Improvement - VueUiChestnut - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:30:29 2024 +0200 - graphieros

Commit: 9656e47

  • Improvement - VueUiCandlestick - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:30:04 2024 +0200 - graphieros

Commit: c437aba

  • Improvement - VueUiAgePyramid - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:29:35 2024 +0200 - graphieros

Commit: 9c5aa16

  • Accordion - Improved component to be open dynamically

Mon Jun 3 07:28:51 2024 +0200 - graphieros

Commit: 7fbb585

  • Improvement - VueUi3dBar - Added data table inside an accordion for smoother open transition

Mon Jun 3 07:27:55 2024 +0200 - graphieros

Commit: 479a6ee

  • DataTable - Added overflow

Sun Jun 2 17:19:14 2024 +0200 - graphieros

Commit: 3a963cb

  • v2.2.2

Sun Jun 2 17:14:14 2024 +0200 - graphieros

Commit: b9c6047

  • Improvement - VueUiXy - Added dataset option to display serie name at start or end of lines and plot type series

Sun Jun 2 17:04:39 2024 +0200 - graphieros

Commit: c0c2a3e

  • Internal library - Added utility function to create tspans from a text content with a max word per line constraint

Sun Jun 2 10:21:10 2024 +0200 - graphieros

Commit: 77c6d0d

  • v2.2.1

Sun Jun 2 10:11:59 2024 +0200 - graphieros

Commit: 98ef8ac

  • Removed useless data attribute

Sun Jun 2 10:07:56 2024 +0200 - graphieros

Commit: b8e2c8f

  • DataTable - Removed duplicate data attribute

Sun Jun 2 10:03:14 2024 +0200 - graphieros

Commit: 818a660

  • Improvement - VueUi3dBar - Added close button on table

Sun Jun 2 10:02:49 2024 +0200 - graphieros

Commit: 49c81d0

  • Improvement - VueUiAgePyramid - Added close button on table

Sun Jun 2 10:02:24 2024 +0200 - graphieros

Commit: 4c003a1

  • Improvement - VueUiCandlestick - Added close button on table

Sun Jun 2 10:02:03 2024 +0200 - graphieros

Commit: 37d1e9e

  • Improvement - VueUiChestnut - Added close button on table

Sun Jun 2 10:01:40 2024 +0200 - graphieros

Commit: 2bae5ea

  • Improvement - VueUiDonutEvolution - Added close button on table

Sun Jun 2 10:01:16 2024 +0200 - graphieros

Commit: a6a7bf0

  • Improvement - VueUiDonut - Added close button on table

Sun Jun 2 10:00:56 2024 +0200 - graphieros

Commit: deaab09

  • Improvement - VueUiDumbbell - Added close button on table

Sun Jun 2 10:00:33 2024 +0200 - graphieros

Commit: cc0485c

  • Improvement - VueUiGalaxy - Added close button on table

Sun Jun 2 10:00:08 2024 +0200 - graphieros

Commit: f00e4b1

  • Improvement - VueUiHeatmap - Added close button on table

Sun Jun 2 09:59:46 2024 +0200 - graphieros

Commit: e6f5a0c

  • Improvement - VueUiMolecule - Added close button on table

Sun Jun 2 09:59:26 2024 +0200 - graphieros

Commit: fdc95b0

  • Improvement - VueUiMoodRadar - Added close button on table

Sun Jun 2 09:59:01 2024 +0200 - graphieros

Commit: 6bc1683

  • Improvement - VueUiNestedDonuts - Added close button on table

Sun Jun 2 09:58:37 2024 +0200 - graphieros

Commit: 54c6682

  • Improvement - VueUiOnion - Added close button on table

Sun Jun 2 09:58:16 2024 +0200 - graphieros

Commit: 3765e82

  • Improvement - VueUiQuadrant - Added close button on table

Sun Jun 2 09:57:55 2024 +0200 - graphieros

Commit: e69ba96

  • Improvement - VueUiRadar - Added close button on table

Sun Jun 2 09:57:32 2024 +0200 - graphieros

Commit: a0639ff

  • Improvement - VueUiRings - Added close button on table

Sun Jun 2 09:57:08 2024 +0200 - graphieros

Commit: 6fc03ec

  • Improvement - VueUiScatter - Added close button on table

Sun Jun 2 09:56:44 2024 +0200 - graphieros

Commit: 5ed16f0

  • Improvement - VueUiStripPlot - Added close button on table

Sun Jun 2 09:56:24 2024 +0200 - graphieros

Commit: c098b3c

  • Improvement - VueUiTreemap - Added close button on table

Sun Jun 2 09:56:03 2024 +0200 - graphieros

Commit: 111bd00

  • Improvement - VueUiVerticalBar - Added close button on table

Sun Jun 2 09:55:38 2024 +0200 - graphieros

Commit: 6774b9c

  • Improvement - VueUiWaffle - Added close button on table

Sun Jun 2 09:55:16 2024 +0200 - graphieros

Commit: 1a2b3bd

  • Improvement - VueUiXy - Added close button on table

Sun Jun 2 09:54:42 2024 +0200 - graphieros

Commit: 5870619

  • DataTable atom component added close button

Sun Jun 2 09:00:05 2024 +0200 - graphieros

Commit: aac11b4

  • Improvement - VueUiWaffle - Improved legend display during segregating animations

Sun Jun 2 08:56:57 2024 +0200 - graphieros

Commit: a28e515

  • Utils - Updated dataLabel with custom state options during animations

Sat Jun 1 16:48:23 2024 +0200 - graphieros

Commit: e386b6d

  • Updated gitignore

Sat Jun 1 14:41:22 2024 +0200 - graphieros

Commit: 51d2d77

  • v2.2.0

Sat Jun 1 14:39:45 2024 +0200 - graphieros

Commit: 99c4ac9

  • VueUiWaffle - Removed useless test

Sat Jun 1 14:22:17 2024 +0200 - graphieros

Commit: e2f09ea

  • Dev environment - Updated VueUiWaffle arena

Sat Jun 1 14:21:40 2024 +0200 - graphieros

Commit: 13abd95

  • Improvement - VueUiWaffle - Added optional animation on serie segregation

Sat Jun 1 14:18:56 2024 +0200 - graphieros

Commit: bd0031b

  • Improvement - VueUiWaffle - Added optional animation on serie segregation

Sat Jun 1 11:44:19 2024 +0200 - graphieros

Commit: 213af0a

  • Improvement - VueUiDonutEvolution - Added discrete animation on datapoint zoom

Sat Jun 1 11:25:50 2024 +0200 - graphieros

Commit: 91e1f8d

  • Improvement - VueUiStripPlot - Improved selection animation

Sat Jun 1 09:48:49 2024 +0200 - graphieros

Commit: fc3ef60

  • v2.1.99

Sat Jun 1 09:42:22 2024 +0200 - graphieros

Commit: 37147e5

  • Dev environment - Updated VueUiQuickChart arena

Sat Jun 1 09:40:01 2024 +0200 - graphieros

Commit: f64f23f

  • Improvement - VueUiQuickChart - Improved line behavior when all datapoints are negative

Sat Jun 1 09:02:02 2024 +0200 - graphieros

Commit: 97b4ebc

  • Improvement - VueUiQuickChart - Donut mode - Removed legend wobbling when segregating datapoints

Sat Jun 1 08:17:12 2024 +0200 - graphieros

Commit: 3bcc948

  • v2.1.98

Sat Jun 1 08:13:07 2024 +0200 - graphieros

Commit: a6d5719

  • Improvement - VueUiScatter - Added useDistanceOpacity plot config option

Sat Jun 1 08:11:08 2024 +0200 - graphieros

Commit: 73b6797

  • Dev environment - Updated VueUiScatter arena

Fri May 31 17:48:45 2024 +0200 - graphieros

Commit: 7313fc4

  • v2.1.97

Fri May 31 17:46:57 2024 +0200 - graphieros

Commit: ca6c021

  • updated .gitignore

Fri May 31 17:42:51 2024 +0200 - graphieros

Commit: 8c4934b

  • Improvement - VueUiStripPlot - Modified to accept negative values

Fri May 31 17:22:33 2024 +0200 - graphieros

Commit: a0e870f

  • Improvement - VueUiVerticalBar - Added warning in case of negative datapoints

Fri May 31 07:56:32 2024 +0200 - graphieros

Commit: 077c510

  • v2.1.96

Fri May 31 07:50:36 2024 +0200 - graphieros

Commit: 9e00b46

  • Fix - VueUiXy - Fixed bar starting base when all datapoints are negative

Fri May 31 07:32:53 2024 +0200 - graphieros

Commit: 708fbb9

  • Dev environment - Updated VueUiQuickChart arena

Fri May 31 07:32:25 2024 +0200 - graphieros

Commit: 665a5bc

  • Fix - VueUiQuickChart - Fixed bar starting base when all datapoints are negative

Fri May 31 07:23:03 2024 +0200 - graphieros

Commit: 0ce5c16

  • Fix - VueUiDonutEvolution - Fixed donut not showing when zooming on single datapoint & various size issues

Thu May 30 16:55:01 2024 +0200 - graphieros

Commit: 4c0d3d4

  • v2.1.95

Thu May 30 16:53:10 2024 +0200 - graphieros

Commit: 7432262

  • Improvement - Slicer - Improved styling

Thu May 30 16:35:31 2024 +0200 - graphieros

Commit: f5339b9

  • v2.1.94

Thu May 30 16:33:02 2024 +0200 - graphieros

Commit: 1effda2

  • Fix - Slicer - Removed additional left px

Thu May 30 16:29:52 2024 +0200 - graphieros

Commit: e5c88d3

  • v2.1.93

Thu May 30 16:22:37 2024 +0200 - graphieros

Commit: cc819c4

  • Dev environment - Updated VueUiQuickChart arena

Thu May 30 16:22:15 2024 +0200 - graphieros

Commit: b2f858a

  • Dev environment - Updated VueUiDonutEvolution arena

Thu May 30 16:21:39 2024 +0200 - graphieros

Commit: ee7d5de

  • Other - Slicer - Minor adjustment

Thu May 30 16:08:05 2024 +0200 - graphieros

Commit: 4422ace

  • Dev environment - Updated VueUiXy arena

Thu May 30 16:07:23 2024 +0200 - graphieros

Commit: 447e8dc

  • Dev environment - Updated VueUiCandlestick arena

Thu May 30 16:06:44 2024 +0200 - graphieros

Commit: 15bd383

  • Improvement - Implemented new slicer version

Thu May 30 16:06:00 2024 +0200 - graphieros

Commit: 6ffbeeb

  • Other - Increased tooltip z-index

Thu May 30 16:05:11 2024 +0200 - graphieros

Commit: 5e77ce3

  • Improvement - Slicer - No overlap

Mon May 27 14:07:12 2024 +0200 - graphieros

Commit: f9de19d

  • v2.1.92

Mon May 27 14:03:16 2024 +0200 - graphieros

Commit: 6cec7a6

  • Config - Changed default VueUiXy bar border strokeWidth to 0

Mon May 27 13:36:29 2024 +0200 - graphieros

Commit: f29111c

  • v2.1.91

Mon May 27 13:19:24 2024 +0200 - graphieros

Commit: e9ebd28

  • Dev environment - Updated VueUiXy arena

Mon May 27 13:18:09 2024 +0200 - graphieros

Commit: 4b9943d

  • Improvement - VueUiXy - Removed canvas; added border config options for bars

Sun May 26 20:35:39 2024 +0200 - graphieros

Commit: b8cffb9

  • v2.1.90

Sun May 26 20:30:30 2024 +0200 - graphieros

Commit: 1907287

  • Improvement - VueUiXy - Added optional period gap for bar types

Sun May 26 19:56:42 2024 +0200 - graphieros

Commit: 36a4611

  • wip dataLabels

Sun May 26 19:47:39 2024 +0200 - graphieros

Commit: abbb8fb

  • poc

Sun May 26 19:43:26 2024 +0200 - graphieros

Commit: 6d9cb03

  • wip

Fri May 24 17:57:28 2024 +0200 - graphieros

Commit: 88f1004

  • v2.1.89

Fri May 24 17:55:37 2024 +0200 - graphieros

Commit: d714712

  • Dev environment - Updated VueUiScatter arena

Fri May 24 17:55:10 2024 +0200 - graphieros

Commit: 41a731c

  • Improvement - VueUiScatter - Added optional selectors on datapoint hover

Fri May 24 15:55:59 2024 +0200 - graphieros

Commit: 3b9b3cf

  • v2.1.88

Fri May 24 15:42:49 2024 +0200 - graphieros

Commit: b792174

  • Fix - VueUiGalaxy - Fixed gradient not showing on Safari

Fri May 24 15:28:27 2024 +0200 - graphieros

Commit: 02bb49b

  • Fix - VueUiTreemap - Fixed cell color disappearing when zooming on Safari

Fri May 24 07:32:29 2024 +0200 - graphieros

Commit: 2c578b8

  • v2.1.87

Fri May 24 07:31:48 2024 +0200 - graphieros

Commit: 0e1a1fc

  • Updated docs

Fri May 24 07:31:28 2024 +0200 - graphieros

Commit: 6bdec5c

  • Dev environment - Updated VueUiSparkline arena

Fri May 24 07:30:52 2024 +0200 - graphieros

Commit: df2db75

  • Improvement - VueUiSparkline - Added #before scoped slot

Thu May 23 21:14:05 2024 +0200 - graphieros

Commit: 77f8778

  • v2.1.86

Thu May 23 21:12:07 2024 +0200 - graphieros

Commit: 32f1e9a

  • Fix - VueUiDonutEvolution - Minor fix

Thu May 23 20:59:16 2024 +0200 - graphieros

Commit: ef7e98b

  • v2.1.85

Thu May 23 20:57:39 2024 +0200 - graphieros

Commit: e1e04ea

  • Fix - VueUiDonutEvolution - Fixed excessive vertical separators when zooming

Thu May 23 20:54:27 2024 +0200 - graphieros

Commit: df2f2f1

  • v2.1.84

Thu May 23 20:50:27 2024 +0200 - graphieros

Commit: dd13144

  • Fix - Slicer - Fixed labels colors not applied from config

Thu May 23 20:45:23 2024 +0200 - graphieros

Commit: 96d80ba

  • Updated docs

Thu May 23 20:45:07 2024 +0200 - graphieros

Commit: b340601

  • Dev environment - Updated arena

Thu May 23 20:44:47 2024 +0200 - graphieros

Commit: 44e6a0f

  • Improvement - VueUiDonutEvolution - Added zoom feature

Thu May 23 20:43:31 2024 +0200 - graphieros

Commit: 0ea860d

  • Dev environment - Updated VueUiDonutEvolution arena

Thu May 23 18:07:07 2024 +0200 - graphieros

Commit: ef2fcbe

  • Dev environment - Updated VueUiIcon arena

Thu May 23 18:05:57 2024 +0200 - graphieros

Commit: 634cba1

  • Fix - Types - Fixed VueUiIconName types

Thu May 23 17:37:15 2024 +0200 - graphieros

Commit: 64dbcec

  • Dev environment - Added VueUiTableHeatmap testing arena

Thu May 23 08:42:51 2024 +0200 - graphieros

Commit: 3bdfb8b

  • v2.1.83

Thu May 23 08:40:37 2024 +0200 - graphieros

Commit: aa2846c

  • Dev environment - Added VueUiTableSparkline testing arena

Thu May 23 08:25:47 2024 +0200 - graphieros

Commit: 5fc1cda

  • Fix - VueUiTableSparkline - Fixed wrong reordering of sparklines when sorting columns

Thu May 23 07:24:43 2024 +0200 - graphieros

Commit: 7a0c1a7

  • v2.1.82

Thu May 23 07:22:25 2024 +0200 - graphieros

Commit: 6303912

  • Dev environment - Added VueUi3dBar testing arena

Wed May 22 17:25:06 2024 +0200 - graphieros

Commit: 40c8917

  • Improvement - VueUiXy - Improved line coating strategy

Wed May 22 16:02:39 2024 +0200 - graphieros

Commit: 202eab3

  • v2.1.81

Wed May 22 16:00:18 2024 +0200 - graphieros

Commit: 873ec18

  • Improvement - VueUiQuickChart - Improved yLabels formatting

Wed May 22 15:31:27 2024 +0200 - graphieros

Commit: fef6ded

  • v2.1.80

Wed May 22 15:24:59 2024 +0200 - graphieros

Commit: 9987f97

  • Dev environment - Updated VueUiQuickChart arena

Wed May 22 15:24:08 2024 +0200 - graphieros

Commit: c905818

  • Improvement - VueUiQuickChart - Added zoom component for line & bar types

Wed May 22 13:48:07 2024 +0200 - graphieros

Commit: e86f311

  • v2.1.79

Wed May 22 13:43:40 2024 +0200 - graphieros

Commit: c55888c

  • Dev environment - Added VueUiDumbbell testing arena

Wed May 22 13:04:51 2024 +0200 - graphieros

Commit: b41f595

  • Dev environment - Added VueUiStripPlot testing arena

Wed May 22 12:05:38 2024 +0200 - graphieros

Commit: 277bef8

  • Dev environment - Updated VueUiNestedDonuts arena

Wed May 22 12:05:19 2024 +0200 - graphieros

Commit: 7b76cc4

  • Dev environment - Updated VueUiMolecule arena

Wed May 22 12:05:00 2024 +0200 - graphieros

Commit: 164521f

  • Dev environment - Updated VueUiGalaxy arena

Wed May 22 12:04:07 2024 +0200 - graphieros

Commit: 3cf945d

  • Fix - VueUiStripPlot - Fixed wrong scaling

Wed May 22 11:45:06 2024 +0200 - graphieros

Commit: 8a2f6fe

  • Dev environment - Added VueUiGalaxy testing arena

Wed May 22 11:44:43 2024 +0200 - graphieros

Commit: b1f1951

  • Fix - VueUiGalaxy - Added missing @selectDatapoint emit

Wed May 22 11:10:51 2024 +0200 - graphieros

Commit: 22a728e

  • Dev environment - Added VueUiNestedDonuts testing arena

Wed May 22 10:36:00 2024 +0200 - graphieros

Commit: 17fb473

  • Dev environment - Added VueUiMolecule testing arena

Wed May 22 10:14:40 2024 +0200 - graphieros

Commit: 652ea72

  • Dev environment - Added VueUiMoodRadar testing arena

Wed May 22 08:29:33 2024 +0200 - graphieros

Commit: 230be85

  • Dev environment - VueUiDonutEvolution - Added logs for @selectLegend emit

Wed May 22 08:23:43 2024 +0200 - graphieros

Commit: 014729f

  • Improvement - VueUiDonutEvolution - @selectLegend returns the segregated item, or null if unsegregated

Wed May 22 08:16:49 2024 +0200 - graphieros

Commit: db42290

  • Dev environment - VueUiDonutEvolution - Added slots

Wed May 22 07:40:47 2024 +0200 - graphieros

Commit: 10d2fc7

  • v2.1.78

Wed May 22 07:38:37 2024 +0200 - graphieros

Commit: 41a4d64

  • Improvement - VueUiQuickChart - Improved xAxis time labels text anchor when rotated

Wed May 22 07:34:26 2024 +0200 - graphieros

Commit: 31d5db2

  • Dev environment - VueUiCandlestick - Added xAxis labels rotation config option

Wed May 22 07:33:19 2024 +0200 - graphieros

Commit: 82c47c7

  • Improvement - VueUiXy - Improved xAxis time labels text anchor when rotated

Wed May 22 07:32:37 2024 +0200 - graphieros

Commit: 3bc7af5

  • Imrpovement - VueUiCandlestick - Added config option to rotate xAxis time labels

Wed May 22 07:24:42 2024 +0200 - graphieros

Commit: 763005b

  • Dev environment - Added VueUiDonutEvolution testing arena

Wed May 22 07:05:04 2024 +0200 - graphieros

Commit: 697bb99

  • Fix - VueUiIcon - Set copyLeft icon fill to none

Wed May 22 07:03:55 2024 +0200 - graphieros

Commit: 7502c2d

  • Improvement - VueUiDonutEvolution - Added config options to rotate and offsetY xAxis time labels

Wed May 22 06:48:51 2024 +0200 - graphieros

Commit: 1438258

  • Fix - VueUiDonutEvolution - Fixed yAxis scale config option not applied

Wed May 22 00:10:42 2024 +0200 - graphieros

Commit: 2ee476c

  • Improvement - Added copyLeft icon

Wed May 22 00:09:16 2024 +0200 - graphieros

Commit: 2b7db2b

  • Dev environment - Added VueUiIcon testing arena

Tue May 21 23:34:25 2024 +0200 - graphieros

Commit: c7ddf17

  • Dev environment - Added VueUiRings testing arena

Tue May 21 17:55:07 2024 +0200 - graphieros

Commit: 05c07d5

  • Updated readme & install docs

Tue May 21 17:54:24 2024 +0200 - graphieros

Commit: 71e5033

  • Dev environment - Added VueUiThermometer testing area

Tue May 21 17:32:36 2024 +0200 - graphieros

Commit: 031e474

  • Dev environment - Added VueUiRelationCircle testing arena

Tue May 21 17:09:16 2024 +0200 - graphieros

Commit: 4a4b068

  • Dev environment - Added VueUiAgePyramid testing arena

Tue May 21 14:35:53 2024 +0200 - graphieros

Commit: 3461366

  • Dev environment - Added VueUiQuickChart testing arena

Tue May 21 13:04:49 2024 +0200 - graphieros

Commit: cba0bf5

  • Dev environment - Added VueUiSparkTrend testing arena

Tue May 21 08:32:58 2024 +0200 - graphieros

Commit: 3924379

  • Cleanup - Removed commented out code

Tue May 21 08:00:39 2024 +0200 - graphieros

Commit: ad44d4f

  • v2.1.77

Tue May 21 07:58:56 2024 +0200 - graphieros

Commit: 47a4931

  • Fix - Slicer - Removed container width

Tue May 21 07:54:49 2024 +0200 - graphieros

Commit: f6494b0

  • v2.1.76

Tue May 21 07:53:01 2024 +0200 - graphieros

Commit: f5bae12

  • Improvement - Applied new slicer component

Tue May 21 07:52:29 2024 +0200 - graphieros

Commit: c52182c

  • Improvement - Added Slicer atom component

Tue May 21 07:51:39 2024 +0200 - graphieros

Commit: 0ba1cda

  • Dev environment - Updated with new zoom component

Mon May 20 20:19:23 2024 +0200 - graphieros

Commit: 57d33d6

  • v2.1.75

Mon May 20 20:16:18 2024 +0200 - graphieros

Commit: 64e71ec

  • Fix - VueUiRadar - Fixed tooltip chart not showing when customFormat is set to null

Mon May 20 20:15:37 2024 +0200 - graphieros

Commit: 6fd6bf1

  • Dev environment - VueUiRadar updated arena

Mon May 20 17:54:17 2024 +0200 - graphieros

Commit: f3b2226

  • v2.1.74

Mon May 20 17:52:47 2024 +0200 - graphieros

Commit: aaf4632

  • Fix - VueUiXy - Removed zoom track color redefinition after zoom reset

Mon May 20 17:48:45 2024 +0200 - graphieros

Commit: 72ba25c

  • v2.1.73

Mon May 20 17:47:11 2024 +0200 - graphieros

Commit: 4033ba0

  • Fix - VueUiXy - Fixed zoom track color not applied on mounted when used with VueDataUi universal component

Mon May 20 17:23:40 2024 +0200 - graphieros

Commit: 22ab00c

  • v2.1.72

Mon May 20 17:21:59 2024 +0200 - graphieros

Commit: b8f62c7

  • Fix - VueUiXy - Simplified zoom track styling

Mon May 20 17:19:10 2024 +0200 - graphieros

Commit: 9f08af9

  • v2.1.71

Mon May 20 17:17:23 2024 +0200 - graphieros

Commit: 51c74df

  • Dev environment - VueUiXy updated arena

Mon May 20 17:16:47 2024 +0200 - graphieros

Commit: 6637a42

  • Fix - VueUiXy - Fixed zoom.color config option not applied

Mon May 20 16:56:11 2024 +0200 - graphieros

Commit: a573dad

  • Dev environment - Added VueUiSparkgauge testing arena

Mon May 20 16:34:56 2024 +0200 - graphieros

Commit: bddf284

  • Dev environment - Added VueUiSparkHistogram testing arena

Mon May 20 16:03:49 2024 +0200 - graphieros

Commit: d6554cb

  • Dev environment - Added VueUiSparkStackbar testing arena

Mon May 20 16:03:22 2024 +0200 - graphieros

Commit: e084920

  • Fix - VueUiSparkStackbar - Fixed bold config option on legend name not applied

Mon May 20 15:40:19 2024 +0200 - graphieros

Commit: a5e086c

  • Dev environment - Added VueUiSparkbar testing arena

Mon May 20 15:17:11 2024 +0200 - graphieros

Commit: 47cdb0a

  • Dev environment - Added VueUiSparkline testing arena

Mon May 20 11:50:30 2024 +0200 - graphieros

Commit: 4466bab

  • v2.1.70

Mon May 20 11:32:13 2024 +0200 - graphieros

Commit: c76e887

  • Dev environment - Added VueUiCandlestick testing arena

Mon May 20 11:15:49 2024 +0200 - graphieros

Commit: 8d79a8f

  • Fix - VueUiCandlestick - Fixed Y axis scale steps config option not applied

Mon May 20 11:08:33 2024 +0200 - graphieros

Commit: 6badeac

  • Improvement - VueUiCandlestick - Set axis lines and ticks stroke-linecap to round

Mon May 20 10:51:30 2024 +0200 - graphieros

Commit: 0793716

  • Fix - VueUiGauge - Fixed harmless console error related to path painted before data is computed

Mon May 20 10:28:55 2024 +0200 - graphieros

Commit: 3537497

  • v2.1.69

Mon May 20 10:27:18 2024 +0200 - graphieros

Commit: 3d7d6d0

  • Fix - Title - Removed padding x

Mon May 20 10:22:59 2024 +0200 - graphieros

Commit: 5e1e93e

  • v2.1.68

Mon May 20 10:20:49 2024 +0200 - graphieros

Commit: 0b9c613

  • Dev environment - Added VueUiScatter testing arena

Mon May 20 10:12:32 2024 +0200 - graphieros

Commit: e971d5c

  • Improvement - Title - Added padding x to avoid any collision with user options when title text is long

Mon May 20 09:19:13 2024 +0200 - graphieros

Commit: ffc195b

  • Fix - VueUiHeatmap - Fixed border radius config option not applied on bottom legend

Mon May 20 09:18:37 2024 +0200 - graphieros

Commit: 29210eb

  • Dev environment - Added VueUiHeatmap testing arena

Mon May 20 08:28:01 2024 +0200 - graphieros

Commit: 4f09a2c

  • Dev environment - Added emits logs

Mon May 20 08:22:29 2024 +0200 - graphieros

Commit: d31e8e3

  • Fix - VueUiQuadrant - Fixed @selectSide emit not applied

Mon May 20 06:45:53 2024 +0200 - graphieros

Commit: fecd2f9

  • Dev environment - Added VueUiVerticalBar test arena

Sun May 19 20:14:43 2024 +0200 - graphieros

Commit: c34cf40

  • Dev environment - Updated VueUiChestnut arena

Sun May 19 20:12:24 2024 +0200 - graphieros

Commit: 8620fd4

  • Dev environment - Updated VueUiOnion arena

Sun May 19 17:28:46 2024 +0200 - graphieros

Commit: 0e205d3

  • v2.1.67

Sun May 19 17:26:51 2024 +0200 - graphieros

Commit: 9e5c208

  • Dev environment - Added VueUiOnion testing arena

Sun May 19 17:26:07 2024 +0200 - graphieros

Commit: 1f8f6da

  • Fix - VueUiOnion - Fixed undefined showing in table when prefix or suffix is not present in datapoints

Sun May 19 17:14:28 2024 +0200 - graphieros

Commit: b1649f0

  • Fix - VueUiOnion - Fixed tooltip config options not applied

Sun May 19 16:57:04 2024 +0200 - graphieros

Commit: e4a67ac

  • Fix - VueUiOnion - Fixed wrong config reference on data labels text offsetY

Sun May 19 11:58:38 2024 +0200 - graphieros

Commit: 7254f31

  • Dev environment - Added VueUiChestnut testing arena

Sun May 19 10:50:22 2024 +0200 - graphieros

Commit: 11389dc

  • Dev environment - Added VueUiTiremarks testing arena

Sun May 19 09:15:44 2024 +0200 - graphieros

Commit: df155ef

  • Dev environment - Added VueUiWheel testing arena

Sun May 19 08:46:56 2024 +0200 - graphieros

Commit: a42c629

  • Dev environment - VueUiTreemap updated arena

Sun May 19 08:41:04 2024 +0200 - graphieros

Commit: 80a8a50

  • Dev environment - VueUiWaffle updated arena

Sun May 19 08:38:55 2024 +0200 - graphieros

Commit: 2c2a380

  • Dev environment - VueUiRadar updated arena

Sun May 19 08:36:02 2024 +0200 - graphieros

Commit: 83d4191

  • Dev environment - VueUiQuadrant updated arena

Sun May 19 08:33:19 2024 +0200 - graphieros

Commit: 2130c22

  • Dev environment - Added VueUiGauge testing arena

Sun May 19 07:39:23 2024 +0200 - graphieros

Commit: f48c46a

  • v2.1.66

Sun May 19 07:37:25 2024 +0200 - graphieros

Commit: 2cbe7b3

  • Dev environment - VueUiXy update

Sun May 19 07:36:16 2024 +0200 - graphieros

Commit: fa424aa

  • Fix - Filter out null datapoints when creating a smooth path

Sun May 19 07:34:52 2024 +0200 - graphieros

Commit: aefe95d

  • Fix - VueUiXy - Many fixes when any datapoint is null

Sat May 18 20:29:13 2024 +0200 - graphieros

Commit: ecb527d

  • Fix - VueUiXy - Fixed issues with null values on line series

Sat May 18 20:02:37 2024 +0200 - graphieros

Commit: 7d1bfef

  • Fix - VueUiXy - In stacked mode, all bar series now occupy a whole x slot

Sat May 18 14:05:49 2024 +0200 - graphieros

Commit: 95131a0

  • Dev environment - Added VueUiQuadrant testing arena

Sat May 18 11:54:13 2024 +0200 - graphieros

Commit: 7d07970

  • Fix - VueUiRadar - Hide tooltip's sparkbar component when customFormat is enabled

Sat May 18 11:43:48 2024 +0200 - graphieros

Commit: 51cb6d0

  • Fix - Legend - Added default padding top

Sat May 18 11:39:24 2024 +0200 - graphieros

Commit: 6ebcc65

  • Dev environment - Added VueUiRadar testing arena

Sat May 18 11:38:44 2024 +0200 - graphieros

Commit: 60a06cb

  • Fix - VueUiRadar - Fixed polygons still showing when segregating series when useCssAnimation is set to false

Sat May 18 10:42:19 2024 +0200 - graphieros

Commit: 4e79bdb

  • v2.1.65

Sat May 18 10:40:12 2024 +0200 - graphieros

Commit: 20dc962

  • Fix - Tooltip font size config option not applied

Sat May 18 10:27:42 2024 +0200 - graphieros

Commit: 6954548

  • Dev environment - Added VueUiWaffle arena

Sat May 18 00:24:02 2024 +0200 - graphieros

Commit: df59413

  • Dev environment - Added VueUiTreemap arena

Fri May 17 14:18:54 2024 +0200 - graphieros

Commit: a9c84f0

  • v2.1.64

Fri May 17 13:36:11 2024 +0200 - graphieros

Commit: ff86d3e

  • v2.1.63

Fri May 17 10:53:56 2024 +0200 - graphieros

Commit: e075a4e

  • v2.1.62

Fri May 17 10:51:52 2024 +0200 - graphieros

Commit: f812476

  • Fix - VueUiXy - Fixed wrong curve reference

Fri May 17 08:40:27 2024 +0200 - graphieros

Commit: c72204b

  • v2.1.61

Fri May 17 08:38:55 2024 +0200 - graphieros

Commit: 5a22702

  • Improvements - VueUiXy added datapoint options to further customize stacked mode

Thu May 16 11:59:06 2024 +0200 - graphieros

Commit: c03840a

  • Refactoring - VueDataUi removed useless imports

Thu May 16 08:51:44 2024 +0200 - graphieros

Commit: 2233778

  • Dev environment - Added VueUiDonut testing arena

Thu May 16 08:02:31 2024 +0200 - graphieros

Commit: 0c264c7

  • v2.1.60

Thu May 16 08:00:59 2024 +0200 - graphieros

Commit: 46c7891

  • Fix - VueUiAccordion - Added parent node to remove warning when used with VueDataUi universal component

Thu May 16 07:57:53 2024 +0200 - graphieros

Commit: f1ca299

  • v2.1.59

Thu May 16 07:53:04 2024 +0200 - graphieros

Commit: d1318be

  • Improvement - VueDataUi universal component - Refactored to use dynamic imports

Thu May 16 07:52:00 2024 +0200 - graphieros

Commit: 9519aa5

  • Dev environment - Added individual testing arena for VueUiXy

Wed May 15 14:38:02 2024 +0200 - graphieros

Commit: 7f178e5

  • v2.1.58

Wed May 15 14:32:14 2024 +0200 - graphieros

Commit: e3718ac

  • Improvement - VueUiTableHeatmap added optional datapoint object attributes color and shape & config attribute shapeSize

Wed May 15 08:43:50 2024 +0200 - graphieros

Commit: 4d9a846

  • v2.1.57

Wed May 15 08:40:35 2024 +0200 - graphieros

Commit: 1bbbf5e

  • Fix - VueUiDonut - Fixed donut thickness config not applied

Wed May 15 07:12:54 2024 +0200 - graphieros

Commit: 489de09

  • Fix - VueUiXy fixed harmless console errors when using time zoom with series that have no datapoint in the timeframe

Tue May 14 19:38:43 2024 -0300 - Leonardo Silveira

Commit: 4eb262f

  • fix typo

Tue May 14 17:37:11 2024 +0200 - graphieros

Commit: 7a91f8a

  • Improvement - VueUiXy - Added config option to stack series in individual scale mode

Tue May 14 14:08:10 2024 +0200 - graphieros

Commit: 4712bd6

  • Improvement - VueUiXy added datapoint individual scaleMin & scaleMax attributes for individual scaling customization

Tue May 14 07:56:35 2024 +0200 - graphieros

Commit: cd3042f

  • v2.1.53

Tue May 14 07:54:53 2024 +0200 - graphieros

Commit: 6b1f5f8

  • Fix - VueUiXy - Fixed sparkline table behavior when time scale is toggled

Tue May 14 07:46:42 2024 +0200 - graphieros

Commit: 7bb4003

  • Fix - VueUiXy - Fixed positioning issue with axis yLabel & added offsets to yLabel & xLabel

Mon May 13 18:12:11 2024 +0200 - graphieros

Commit: f2fa154

  • Fix - VueUiXy fixed line areas in multiple scale mode

Mon May 13 17:56:46 2024 +0200 - graphieros

Commit: 344a1f2

  • Fix - VueUiXy fixed missing individual scale for bar types

Mon May 13 17:05:00 2024 +0200 - graphieros

Commit: b54d3f5

  • New feature - VueUiXy added support for multiple y Axis scales

Mon May 13 08:20:17 2024 +0200 - graphieros

Commit: ffa91ac

  • Fix - VueUiDumbbell minor fixes

Mon May 13 07:54:02 2024 +0200 - graphieros

Commit: d879236

  • v2.1.48

Mon May 13 07:51:30 2024 +0200 - graphieros

Commit: 6991624

  • Fix - Fixed dumbbell error when useGradient is set to false

Mon May 13 07:48:21 2024 +0200 - graphieros

Commit: f6de7b4

  • Fix - Fixed dumbbell error when useGradient is set to false

Mon May 13 07:13:05 2024 +0200 - graphieros

Commit: 29667f3

  • Improvement - Added optional animation to VueUiDumbbell

Sun May 12 17:36:49 2024 +0200 - graphieros

Commit: 54194fe

  • New feature - Added VueUiDumbbell component

Sat May 11 09:37:44 2024 +0200 - graphieros

Commit: 8a99306

  • Fix - css

Sat May 11 09:33:23 2024 +0200 - graphieros

Commit: 2dd5080

  • Fix - css

Sat May 11 09:14:22 2024 +0200 - graphieros

Commit: 54ea262

  • New feature - Added VueUiStripPlot component

Fri May 10 08:27:07 2024 +0200 - graphieros

Commit: f9c2d2d

  • Fix - Set focus on chart before zooming to avoid scroll bleeding

Fri May 10 07:16:55 2024 +0200 - graphieros

Commit: cbc9980

  • v2.1.40

Fri May 10 07:14:35 2024 +0200 - graphieros

Commit: 97f43b2

  • Updated readme

Fri May 10 07:05:24 2024 +0200 - graphieros

Commit: 236db34

  • Added scripts to use local vue-data-ui package during dev and delete it before build

Thu May 9 18:50:57 2024 +0200 - graphieros

Commit: f23f4d8

  • Fix - Prevented click event propagations

Thu May 9 18:10:11 2024 +0200 - graphieros

Commit: 393de77

  • Other - Minor refactoring

Thu May 9 10:57:09 2024 +0200 - graphieros

Commit: e1d7729

  • v2.1.39

Thu May 9 10:51:19 2024 +0200 - graphieros

Commit: a21336d

  • Improvement - Added config option for a pointy variant of the gauge pointer

Thu May 9 08:33:03 2024 +0200 - graphieros

Commit: 3a92a75

  • Added types field in package.json

Thu May 9 08:28:13 2024 +0200 - graphieros

Commit: d30a1ea

  • Added types field in package.json

Wed May 8 19:04:43 2024 +0200 - graphieros

Commit: f1250f2

  • v2.1.36

Wed May 8 19:02:48 2024 +0200 - graphieros

Commit: 110b22a

  • Fix - Added animated class to underlayer rect

Wed May 8 19:02:23 2024 +0200 - graphieros

Commit: 1c60347

  • Fix - Added animated class to underlayer path

Wed May 8 18:58:27 2024 +0200 - graphieros

Commit: ba26b91

  • v2.1.35

Wed May 8 18:58:01 2024 +0200 - graphieros

Commit: 01e14e6

  • Removed useless test

Wed May 8 18:38:27 2024 +0200 - graphieros

Commit: 98d59f1

  • Fix - In zoom mode, fixed donut breaking when segregating series

Wed May 8 17:57:46 2024 +0200 - graphieros

Commit: f167fc7

  • Improvement - Added smooth animation on serie segregation

Wed May 8 17:48:43 2024 +0200 - graphieros

Commit: dc90795

  • Improvement - Added smooth animation on serie segregation

Wed May 8 17:35:48 2024 +0200 - graphieros

Commit: cece2a8

  • Improvement - Added smooth animation on category segregation

Wed May 8 10:41:52 2024 +0200 - graphieros

Commit: 084d51e

  • Build v2.1.34

Wed May 8 10:31:46 2024 +0200 - graphieros

Commit: 95962f6

  • v2.1.33 build

Wed May 8 10:25:38 2024 +0200 - graphieros

Commit: f896e08

  • Improvement - Added animation on serie segregation

Wed May 8 10:09:40 2024 +0200 - graphieros

Commit: 24911c6

  • Improvement - Added opacity transition

Wed May 8 10:03:54 2024 +0200 - graphieros

Commit: f8c22c2

  • Improvement - Added line borders

Wed May 8 09:54:40 2024 +0200 - graphieros

Commit: 5c7a656

  • Fixed cancelAnimationFrame bad ids

Wed May 8 00:04:58 2024 +0200 - graphieros

Commit: be8b053

  • VueUiScatter added marginal lines optional config

Tue May 7 17:29:28 2024 +0200 - graphieros

Commit: da2a438

  • Updated test with latest components

Tue May 7 14:17:45 2024 +0200 - graphieros

Commit: 762355a

  • VueUiNestedDonuts reduced blur filter

Tue May 7 14:07:45 2024 +0200 - graphieros

Commit: ec90d22

  • VueUiNestedDonuts added smooth animation on series segregation

Tue May 7 08:16:51 2024 +0200 - graphieros

Commit: 69ad843

  • VueUiScatter added marginal bars config option

Tue May 7 08:01:21 2024 +0200 - graphieros

Commit: c0b7b90

  • VueUiScatter added marginal bars config option

Tue May 7 07:55:24 2024 +0200 - graphieros

Commit: 761302a

  • VueUiScatter added marginal bars config option

Mon May 6 18:35:44 2024 +0200 - graphieros

Commit: fc457e3

  • Improved documentation

Mon May 6 18:13:11 2024 +0200 - graphieros

Commit: ef264d8

  • Improved documentation

Mon May 6 06:43:18 2024 +0200 - graphieros

Commit: fbfcec3

  • v2.1.24 build

Mon May 6 06:40:28 2024 +0200 - graphieros

Commit: aaeef78

  • VueUiDonut hide average label during serie segregation animation

Mon May 6 06:38:43 2024 +0200 - graphieros

Commit: 72a0287

  • VueUiOnion always keep same track size when series are segregated

Sun May 5 09:31:53 2024 +0200 - graphieros

Commit: 678501f

  • Added segregation reactivity to #legend slots

Sat May 4 20:11:45 2024 +0200 - graphieros

Commit: aea5ba6

  • Minor fixes

Sat May 4 11:14:16 2024 +0200 - graphieros

Commit: 818b486

  • VueUiSparkTrend fixes

Sat May 4 10:48:11 2024 +0200 - graphieros

Commit: cce0e89

  • VueUiSparkTrend fixes

Sat May 4 10:13:06 2024 +0200 - graphieros

Commit: 87eacf7

  • VueUiSparkTrend added new component

Fri May 3 06:49:52 2024 +0200 - graphieros

Commit: dbdb42d

  • VueUiDonut added animation on serie segregation

Fri May 3 05:42:07 2024 +0200 - graphieros

Commit: dcb8e90

  • VueUiQuickChart added donut animation on serie segregation

Thu May 2 08:01:32 2024 +0200 - graphieros

Commit: cee4947

  • VueUiQuickChart fixed errors when a datapoint has 0 value

Wed May 1 16:15:33 2024 +0200 - graphieros

Commit: ac1abff

  • VueUiQuickChart added axis labels for line & bar charts

Wed May 1 08:56:36 2024 +0200 - graphieros

Commit: 5218a45

  • VueUiQuadrant improved zoom animation

Tue Apr 30 17:40:23 2024 +0200 - graphieros

Commit: 1976156

  • VueUiQuadrant fixed janky animation on side zoom

Mon Apr 29 23:52:36 2024 +0200 - graphieros

Commit: dd22863

  • Updated readme

Mon Apr 29 23:35:43 2024 +0200 - graphieros

Commit: aa96c9c

  • VueUiCursor added new component

Mon Apr 29 07:24:50 2024 +0200 - graphieros

Commit: 60040e6

  • VueUiQuickChart fixed minor issues in fullscreen mode (tooltip & hidden content)

Sun Apr 28 17:52:52 2024 +0200 - graphieros

Commit: efdf76f

  • Added rotating xLabel option to VueUiXy and VueUiQuickChart

Sun Apr 28 11:05:55 2024 +0200 - graphieros

Commit: 7bd1b33

  • VueUiQuickChart fixed negative bar height issue

Sat Apr 27 23:04:06 2024 +0200 - graphieros

Commit: 64254f7

  • VueUiQuickChart minor config fixes

Sat Apr 27 19:21:03 2024 +0200 - graphieros

Commit: 8cdc320

  • VueUiQuickChart added yLabel colors

Sat Apr 27 18:33:56 2024 +0200 - graphieros

Commit: f988ab8

  • VueUiQuickChart fixed config issue with heigth & width null defaults

Sat Apr 27 17:55:31 2024 +0200 - graphieros

Commit: dc097bc

  • Fixed donut hollow background

Sat Apr 27 17:48:52 2024 +0200 - graphieros

Commit: 92ea61c

  • VueUiQuickChart added new component

Wed Apr 24 17:31:36 2024 +0200 - graphieros

Commit: e14d06a

  • Updated default color palette

Tue Apr 23 17:29:43 2024 +0200 - graphieros

Commit: 2f16497

  • VueUi3dBar fixed Safari css issues

Tue Apr 23 06:42:27 2024 +0200 - graphieros

Commit: 519d8d1

  • VueUiDonut added dataLabel scoped slot for custom dataLabels

Mon Apr 22 07:49:34 2024 +0200 - graphieros

Commit: eee7396

  • VueUiAccordion improved features

Mon Apr 22 07:41:34 2024 +0200 - graphieros

Commit: 36d79a3

  • VueUiAccordion improved features

Sun Apr 21 23:24:28 2024 +0200 - graphieros

Commit: f5fb2cc

  • VueUiAccordion improved features

Sun Apr 21 17:33:38 2024 +0200 - graphieros

Commit: 1ccd1d1

  • VueUiAccordion added new component

Sun Apr 21 09:56:34 2024 +0200 - graphieros

Commit: d71ee1e

  • Allowed the use of name colors & improved error detection

Sat Apr 20 09:42:05 2024 +0200 - graphieros

Commit: fc69d70

  • VueUiSparkStackbar minor bug fix

Fri Apr 19 18:00:21 2024 +0200 - graphieros

Commit: c0e5836

  • VueUiTableHeatmap added new component

Fri Apr 19 17:36:45 2024 +0200 - graphieros

Commit: 2589766

  • VueUiTableHeatmap added new component

Fri Apr 19 17:35:00 2024 +0200 - graphieros

Commit: 5ab8ad0

  • VueUiTableHeatmap added new component

Thu Apr 18 07:16:29 2024 +0200 - graphieros

Commit: 824fc6f

  • VueUiSparkStackbar added serie segregation

Wed Apr 17 18:01:19 2024 +0200 - graphieros

Commit: c72a03d

  • VueUiIcon added more icons

Wed Apr 17 08:31:18 2024 +0200 - graphieros

Commit: ac070f6

  • VueUiIcon added more icons

Tue Apr 16 07:02:43 2024 +0200 - graphieros

Commit: 031cd34

  • VueUiScatter added giftWrap config option to display the max area occupied by a dataset's plots

Mon Apr 15 17:21:50 2024 +0200 - graphieros

Commit: 25e5225

  • VueUiGauge improved gradient

Mon Apr 15 08:04:20 2024 +0200 - graphieros

Commit: c7fac10

  • Fixed blur effect not working on Safari

Sun Apr 14 19:51:03 2024 +0200 - graphieros

Commit: fcf5460

  • VueUiOnion improved gradient implementation

Sun Apr 14 17:01:00 2024 +0200 - graphieros

Commit: 7f110ae

  • VueUiScatter update types

Sun Apr 14 16:48:14 2024 +0200 - graphieros

Commit: 1517fe2

  • VueUiScatter added 'weight' value dataset option to create a bubble chart

Sun Apr 14 10:17:42 2024 +0200 - graphieros

Commit: dc20327

  • Removed unused test fixtures file

Sun Apr 14 09:34:38 2024 +0200 - graphieros

Commit: e7ed77d

  • VueUiIcon added icons

Sat Apr 13 11:30:37 2024 +0200 - graphieros

Commit: 132e733

  • Update license

Sat Apr 13 10:03:52 2024 +0200 - graphieros

Commit: adfc2df

  • VueUiWaffle added cell data passed to the #cell slot

Sat Apr 13 09:40:56 2024 +0200 - graphieros

Commit: a77b3d2

  • VueUiWaffle added #cell scoped slot for custom cell content

Fri Apr 12 17:50:31 2024 +0200 - graphieros

Commit: be00e03

  • VueUi3dBar added breakdown donut in case stack dataset option bears breakdown array attribute

Wed Apr 10 17:37:22 2024 +0200 - graphieros

Commit: b5ebb3f

  • VueUi3dBar minor styling improvements

Wed Apr 10 07:36:39 2024 +0200 - graphieros

Commit: c1dbd27

  • VueUi3dBar major improvement adding stacked bar dataset option

Wed Apr 10 00:13:06 2024 +0200 - graphieros

Commit: e287dab

  • VueUi3dBar major improvement adding stacked bar dataset option

Mon Apr 8 19:56:22 2024 +0200 - graphieros

Commit: df9ae78

  • VueUiMolecule allowed selection of datapoints located below dataLabels

Mon Apr 8 18:36:53 2024 +0200 - graphieros

Commit: e3bdbd8

  • VueUiHeatmap minor fixes on the zoom minimap

Mon Apr 8 08:37:45 2024 +0200 - graphieros

Commit: b8993d4

  • VueUiQuadrant fixed minimap colors

Mon Apr 8 08:32:16 2024 +0200 - graphieros

Commit: ca6d327

  • VueUiQuadrant added zoom & minimap

Sun Apr 7 19:56:26 2024 +0200 - graphieros

Commit: 42e63f0

  • VueUiTreemap improved zoom functionality & animations

Sun Apr 7 17:50:15 2024 +0200 - graphieros

Commit: 4b51906

  • VueUiTreemap improved zoom functionality & animations

Sun Apr 7 17:43:26 2024 +0200 - graphieros

Commit: 01fc233

  • VueUiTreemap improved zoom functionality & animations

Sun Apr 7 12:01:38 2024 +0200 - graphieros

Commit: a41dde1

  • VueUiTreemap new component

Sat Apr 6 21:04:21 2024 +0200 - graphieros

Commit: 66d625d

  • VueUiTreemap new component

Sat Apr 6 20:00:14 2024 +0200 - graphieros

Commit: a07ddce

  • VueUiTreemap new component

Sat Apr 6 19:48:52 2024 +0200 - graphieros

Commit: ff46b20

  • VueUiTreemap new component

Sat Apr 6 19:14:05 2024 +0200 - graphieros

Commit: b3c7afd

  • VueUiTreemap new component

Sat Apr 6 18:29:47 2024 +0200 - graphieros

Commit: 7e5be6b

  • VueUiTreemap new component

Sat Apr 6 17:55:49 2024 +0200 - graphieros

Commit: 81e8cb1

  • VueUiTreemap new component

Fri Apr 5 15:46:42 2024 +0200 - graphieros

Commit: ca72091

  • Improved chart components resilience when dataset is undefined or empty, also showing a skeleton

Thu Apr 4 17:33:58 2024 +0200 - graphieros

Commit: c9cf1fc

  • VueUiSparkline added config options to control chart width and optional dataLabel display

Thu Apr 4 08:20:04 2024 +0200 - graphieros

Commit: 82ef430

  • Updated readme

Thu Apr 4 07:29:15 2024 +0200 - graphieros

Commit: 226baa7

  • Added exposed data to #tooltip-before and #tooltip-after scoped slots

Wed Apr 3 17:32:36 2024 +0200 - graphieros

Commit: 1c936d8

  • VueUiGalaxy added #tooltip-before & #tooltip-after named slots

Wed Apr 3 07:41:47 2024 +0200 - graphieros

Commit: dcb9385

  • Added #tooltip-before & #tooltip-after named slots on all components bearing tooltips

Tue Apr 2 17:24:21 2024 +0200 - graphieros

Commit: ad47075

  • VueUiSparkHistogram added optional animation; improved VueUiSparkline animation consistency

Tue Apr 2 07:44:55 2024 +0200 - graphieros

Commit: 6ab1343

  • Added animations on mini charts

Sun Mar 31 20:28:56 2024 +0200 - graphieros

Commit: 5bc50a5

  • Minor fix in .d.ts file

Sun Mar 31 18:02:49 2024 +0200 - graphieros

Commit: 9ed4b6f

  • VueUiKpi added component

Sun Mar 31 16:36:31 2024 +0200 - graphieros

Commit: 6a9e4d4

  • VueUiKpi added component

Sun Mar 31 10:23:43 2024 +0200 - graphieros

Commit: 26ac927

  • Optimized css

Sun Mar 31 10:14:27 2024 +0200 - graphieros

Commit: 5591786

  • Optimized css

Sat Mar 30 19:29:04 2024 +0100 - graphieros

Commit: 7b5cf20

  • VueUiIcon minor fixes

Sat Mar 30 17:36:07 2024 +0100 - graphieros

Commit: d64e57f

  • Updated tests - Commented out tests involving file downloads as they break in current env

Sat Mar 30 16:24:05 2024 +0100 - graphieros

Commit: 5020571

  • VueUiGalaxy added gradient config option

Sat Mar 30 16:18:32 2024 +0100 - graphieros

Commit: 9572728

  • VueUiGalaxy added gradient config option

Sat Mar 30 08:53:15 2024 +0100 - graphieros

Commit: b085fe3

  • VueUiGalaxy improvements

Fri Mar 29 18:21:34 2024 +0100 - graphieros

Commit: 273f361

  • VueUiGalaxy added component

Thu Mar 28 15:14:04 2024 +0100 - graphieros

Commit: 3ab5e1a

  • VueUiWaffle fixes

Thu Mar 28 07:10:51 2024 +0100 - graphieros

Commit: ef628ae

  • Updated error handling tests

Thu Mar 28 06:51:38 2024 +0100 - graphieros

Commit: 5f3e5b9

  • Use console.warn for error handling

Wed Mar 27 16:05:20 2024 +0100 - graphieros

Commit: 2f8f4c4

  • Improved error handling

Tue Mar 26 14:27:50 2024 +0100 - graphieros

Commit: c57567e

  • Added legend scoped slot to all eligible components

Mon Mar 25 17:18:24 2024 +0100 - graphieros

Commit: 26dfa52

  • Added new icons

Mon Mar 25 06:30:03 2024 +0100 - graphieros

Commit: 7378b7b

  • Fixed typos in .d.ts file & improved VueUiSparkgauge component

Sun Mar 24 16:22:05 2024 +0100 - graphieros

Commit: 2466bc3

  • Added universal component VueDataUi

Sat Mar 23 08:37:53 2024 +0100 - graphieros

Commit: 61551b1

  • VueUiVerticalBar add missing prefix & suffix on parent labels

Fri Mar 22 10:43:04 2024 +0100 - graphieros

Commit: 003d4f5

  • VueUiOnion minor fix

Fri Mar 22 10:35:59 2024 +0100 - graphieros

Commit: d5585e5

  • VueUiOnion minor fix

Wed Mar 20 06:20:49 2024 +0100 - graphieros

Commit: e2e89a2

  • VueUiSparkgauge improvements

Tue Mar 19 18:46:21 2024 +0100 - graphieros

Commit: 7a750e3

  • VueUiSparkgauge created component

Tue Mar 19 18:26:38 2024 +0100 - graphieros

Commit: 8c0afe7

  • VueUiSparkgauge added component

Tue Mar 19 08:08:46 2024 +0100 - graphieros

Commit: 426cea8

  • VueUiWaffle added optional captions visible in horizontal mode

Mon Mar 18 08:32:50 2024 +0100 - Alec Probert

Commit: 5101627

  • update

Mon Mar 18 08:29:40 2024 +0100 - Alec Probert

Commit: 53eebc7

  • update

Mon Mar 18 08:25:58 2024 +0100 - Alec Probert

Commit: bc15b5f

  • VueUiNestedDonuts minor fix to donut name labels

Mon Mar 18 08:10:47 2024 +0100 - Alec Probert

Commit: 6d4e813

  • VueUiNestedDonuts added display donut name option

Sun Mar 17 17:24:12 2024 +0100 - Alec Probert

Commit: 38a323a

  • VueUiNestedDonuts minor fix

Sun Mar 17 16:42:40 2024 +0100 - Alec Probert

Commit: fde84e0

  • Fixed minor issues with legends

Sun Mar 17 16:34:48 2024 +0100 - Alec Probert

Commit: 2a37c12

  • cleanup

Sun Mar 17 16:33:18 2024 +0100 - Alec Probert

Commit: 0363947

  • Remove logs

Sun Mar 17 16:25:28 2024 +0100 - Alec Probert

Commit: 3262ca2

  • VueUiNestedDonut improvements

Sun Mar 17 12:01:52 2024 +0100 - Alec Probert

Commit: 4459407

  • Remove dls

Sun Mar 17 12:01:08 2024 +0100 - Alec Probert

Commit: ae9b6b4

  • Remove ss

Sun Mar 17 11:58:19 2024 +0100 - Alec Probert

Commit: f1375f7

  • VueUiNestedDonuts created component

Thu Mar 14 07:16:03 2024 +0100 - graphieros

Commit: 2698fde

  • VueUiDonut add @selectDatapoint emit

Wed Mar 13 17:48:47 2024 +0100 - graphieros

Commit: 90561cd

  • VueUiOnion fixed tooltip traps layer order hidering events when gradients is enabled

Wed Mar 13 17:03:33 2024 +0100 - graphieros

Commit: 041f6bd

  • VueUiOnion added tooltip

Mon Mar 11 08:41:33 2024 +0100 - graphieros

Commit: 41e2a57

  • VueUiAgePyramid added OffsetY to serie titles; refactored tooltip customFormat handling

Sun Mar 10 07:51:05 2024 +0100 - graphieros

Commit: f7c8dff

  • VueUiHeatmap added missing label colors in bottom legend

Sun Mar 10 07:39:19 2024 +0100 - graphieros

Commit: de74912

  • VueUiXy edge case fix

Sun Mar 10 07:30:39 2024 +0100 - graphieros

Commit: 544d074

  • VueUiXy edge case fix

Sat Mar 9 19:20:58 2024 +0100 - graphieros

Commit: 30ef8f3

  • VueUiHeatmap redesigned legend in bottom position

Sat Mar 9 10:49:09 2024 +0100 - graphieros

Commit: 9842ee0

  • VueUiScatter minor axis fix

Fri Mar 8 19:26:33 2024 +0100 - graphieros

Commit: 6618c43

  • VueUiXy layout improvements for bar types only edge cases

Fri Mar 8 13:08:58 2024 +0100 - graphieros

Commit: 8684ebc

  • VueUiSparkline layout fixes

Fri Mar 8 07:12:25 2024 +0100 - graphieros

Commit: 64d62fe

  • Added @selectDatpoint emit event on all mini charts

Thu Mar 7 16:21:28 2024 +0100 - graphieros

Commit: 9c91756

  • Make tooltips headless in customFormat mode

Thu Mar 7 16:03:14 2024 +0100 - graphieros

Commit: b940cac

  • Make tooltips headless in customFormat mode

Thu Mar 7 15:54:11 2024 +0100 - graphieros

Commit: f4df6f4

  • Make tooltips headless in customFormat mode

Thu Mar 7 09:53:50 2024 +0100 - graphieros

Commit: f78387c

  • Custom tooltips post release fixes

Thu Mar 7 08:35:02 2024 +0100 - graphieros

Commit: a9f7024

  • Added customFormat config option for customizable tooltip contents

Mon Mar 4 08:18:22 2024 +0100 - graphieros

Commit: f37391d

  • VueUiQuadrant add plotLabels showAsTag option

Sun Mar 3 10:07:58 2024 +0100 - graphieros

Commit: 3b858c1

  • VueUiDonutEvolution minor fixes

Sat Mar 2 08:52:39 2024 +0100 - graphieros

Commit: b50f34e

  • VueUiSparkbar minor fix

Fri Mar 1 17:22:22 2024 +0100 - graphieros

Commit: 347eb26

  • VueUiHeatmap & VueUiQuadrant fixes

Tue Feb 20 20:25:06 2024 +0100 - graphieros

Commit: b1f16f8

  • VueUiXy bug fix

Mon Feb 19 08:16:45 2024 +0100 - graphieros

Commit: b6a3909

  • VueUiXy fixed issues with sparkline data table with uneven dataset series lengths

Sun Feb 18 18:44:20 2024 +0100 - graphieros

Commit: 4814d56

  • VueUiXy optional display of data table with sparklines

Sun Feb 18 18:31:59 2024 +0100 - graphieros

Commit: 5d4d3a2

  • VueUiXy optional display of data table with sparlines

Sun Feb 18 18:25:01 2024 +0100 - graphieros

Commit: f02222f

  • VueUiXy optional display of data table with sparlines

Sun Feb 18 11:19:29 2024 +0100 - graphieros

Commit: 64a6928

  • VueUiHeatmap fixed viewBox size issues on small datasets; added tests

Sat Feb 17 10:51:43 2024 +0100 - graphieros

Commit: d489311

  • VueUiVerticalBar & VueUiHeatmap improvements

Sat Feb 17 08:10:31 2024 +0100 - graphieros

Commit: bdb167f

  • Removed most wait times in cypress tests

Fri Feb 16 08:15:20 2024 +0100 - graphieros

Commit: b67b6d6

  • Added getVueDataUiConfig utility function, added tests

Thu Feb 15 08:30:41 2024 +0100 - graphieros

Commit: 7bcc7dd

  • VueUiMiniLoader minor improvements

Wed Feb 14 23:38:41 2024 +0100 - graphieros

Commit: e17bf69

  • Added VueUiMiniLoader component

Wed Feb 14 23:26:00 2024 +0100 - graphieros

Commit: 553f334

  • Added VueUiMiniLoader component

Tue Feb 13 17:54:27 2024 +0100 - graphieros

Commit: ae7bbe1

  • Extended prefix & suffix dataLabels config options for most charts

Mon Feb 12 07:49:56 2024 +0100 - graphieros

Commit: 584154a

  • VueUiXy show any xLabel on hover when showOnlyFirstAndLast is true

Sat Feb 10 11:01:36 2024 +0100 - graphieros

Commit: 3105d45

  • Added Arrow component

Sat Feb 10 10:35:21 2024 +0100 - graphieros

Commit: 08eb4d0

  • Added Arrow component

Wed Feb 7 07:24:47 2024 +0100 - graphieros

Commit: ad83233

  • VueUiHeatmap minor fix

Mon Feb 5 07:53:04 2024 +0100 - graphieros

Commit: 88b55b9

  • VueUiTableSparkline improved interactivity

Mon Feb 5 07:43:52 2024 +0100 - graphieros

Commit: 57a4933

  • VueUiTableSparkline improved interactivity

Mon Feb 5 05:25:48 2024 +0100 - graphieros

Commit: b479b5d

  • VueUiTableSparkline improved layout

Sun Feb 4 18:36:19 2024 +0100 - graphieros

Commit: 3b6ae2c

  • VueUiTableSparkline added component

Sat Feb 3 11:46:42 2024 +0100 - graphieros

Commit: ff722a0

  • VueUiXy improved zoom

Sat Feb 3 09:07:58 2024 +0100 - graphieros

Commit: 1b56813

  • VueUiHeatmap improved color management

Fri Feb 2 23:15:41 2024 +0100 - graphieros

Commit: 8260df5

  • VueUiRating minor bug fix

Fri Feb 2 20:17:55 2024 +0100 - graphieros

Commit: 3f814e7

  • VueUiChestnut minor fix

Fri Feb 2 20:01:58 2024 +0100 - graphieros

Commit: aac56cd

  • VueUiVerticalBar minor fix

Fri Feb 2 17:26:01 2024 +0100 - graphieros

Commit: 01ba529

  • Improved data tables

Fri Feb 2 17:09:15 2024 +0100 - graphieros

Commit: 866a322

  • Migrated all remaining data tables to new system

Thu Feb 1 18:00:59 2024 +0100 - graphieros

Commit: f8ff9a9

  • Improved data tables

Wed Jan 31 23:34:17 2024 +0100 - graphieros

Commit: bdcf643

  • Updated table layouts for most chart components

Tue Jan 30 09:24:15 2024 +0100 - graphieros

Commit: 0e6998c

  • Improved table layout and responsiveness

Mon Jan 29 22:52:18 2024 +0100 - graphieros

Commit: 6780fb4

  • VueUiDonutEvolution removed akward hover animation

Mon Jan 29 08:24:14 2024 +0100 - graphieros

Commit: 625e0b5

  • VueUiDonutEvolution improve donuts layout

Sun Jan 28 18:32:47 2024 +0100 - graphieros

Commit: 0790909

  • Added tests

Sun Jan 28 11:45:02 2024 +0100 - graphieros

Commit: 41f07f3

  • Improved yLabels nice scales in VueUiXy, VueUiDonutEvolution & VueUiCandlestick

Sat Jan 27 11:10:56 2024 +0100 - graphieros

Commit: 94aa031

  • VueUiDonut improve arcs

Wed Jan 24 07:54:42 2024 +0100 - graphieros

Commit: 584e9de

  • Bump vite version to 4.5.2

Tue Jan 9 17:31:33 2024 +0100 - graphieros

Commit: a1ae38b

  • Improved fullscreen behavior

Tue Jan 9 08:59:11 2024 +0100 - graphieros

Commit: c476f67

  • Added fullscreen toggle user option (1)

Tue Jan 9 08:47:04 2024 +0100 - graphieros

Commit: cc763dd

  • Added fullscreen toggle user option

Mon Jan 8 08:08:17 2024 +0100 - graphieros

Commit: 1cf31fd

  • VueUiSkeleton add donutEvolution type

Sat Jan 6 19:55:45 2024 +0100 - graphieros

Commit: bd3db53

  • VueUiMolecule added component

Sat Jan 6 19:46:23 2024 +0100 - graphieros

Commit: 44df131

  • VueUiMolecule added component

Sat Jan 6 18:23:33 2024 +0100 - graphieros

Commit: 69e7394

  • VueUiMolecule added component

Sat Jan 6 18:18:31 2024 +0100 - graphieros

Commit: cd2d7ad

  • VueUiMolecule added component

Sat Jan 6 18:11:53 2024 +0100 - graphieros

Commit: ebfd62c

  • VueUiMolecule added component

Sat Jan 6 17:40:16 2024 +0100 - graphieros

Commit: 5d40745

  • VueUiMolecule added component

Fri Jan 5 07:58:38 2024 +0100 - graphieros

Commit: e0a10f8

  • Minor adjustments to testing arena

Thu Jan 4 06:43:53 2024 +0100 - graphieros

Commit: a541489

  • VueUiIcon design improvements

Wed Jan 3 08:02:57 2024 +0100 - graphieros

Commit: b1683ef

  • VueUiDigits create component

Wed Jan 3 08:01:21 2024 +0100 - graphieros

Commit: 680f07b

  • VueUiDigits create component

Mon Jan 1 17:46:49 2024 +0100 - graphieros

Commit: 0da6819

  • Removed XLSX dependency

Mon Jan 1 11:15:57 2024 +0100 - graphieros

Commit: 5b6f6b6

  • VueUi3dBar added tube shape option

Mon Jan 1 01:38:01 2024 +0100 - graphieros

Commit: 25f8f8c

  • VueUi3dBar added component

Mon Jan 1 01:32:57 2024 +0100 - graphieros

Commit: d5aac73

  • VueUi3dBar added component

Mon Jan 1 01:17:06 2024 +0100 - graphieros

Commit: d85198a

  • VueUi3dBar added component

Mon Jan 1 00:43:30 2024 +0100 - graphieros

Commit: b5c7b81

  • VueUi3dBar added component

Mon Jan 1 00:34:55 2024 +0100 - graphieros

Commit: e730788

  • VueUi3dBar added component

Mon Jan 1 00:15:34 2024 +0100 - graphieros

Commit: 7eeb5ad

  • VueUi3dBar added component

Sat Dec 30 22:50:21 2023 +0100 - graphieros

Commit: ccc52fc

  • Added svg slot in most chart components

Sat Dec 30 17:39:49 2023 +0100 - graphieros

Commit: c53ce04

  • Use uid instead of Math.random

Sat Dec 30 10:28:42 2023 +0100 - graphieros

Commit: 0f9a778

  • VueUiMoodRadar added component

Thu Dec 28 00:01:49 2023 +0100 - graphieros

Commit: f974502

  • VueUiIcon added 29 icons

Wed Dec 27 08:03:01 2023 +0100 - graphieros

Commit: 2f2598e

  • VueUiIcon create component

Tue Dec 26 16:11:55 2023 +0100 - graphieros

Commit: 2a74c15

  • VueUiSparkHistogram add offsetY config property to value label

Tue Dec 26 16:00:28 2023 +0100 - graphieros

Commit: 4187b6d

  • . VueUiSparkHistogram add shapes . VueUiScatter add shapes . VueUiScreenshot add component test

Mon Dec 25 17:55:11 2023 +0100 - graphieros

Commit: b4b2cc8

  • Improve test coverage

Mon Dec 25 01:01:41 2023 +0100 - graphieros

Commit: 1b3ba18

  • Add tests, VueUiDonutEvolution minor improvements

Sun Dec 24 00:40:20 2023 +0100 - graphieros

Commit: eb6dee0

  • VueUiDonutEvolution minor updates

Sun Dec 24 00:35:12 2023 +0100 - graphieros

Commit: f9b3331

  • VueUiDonutEvolution minor updates

Sat Dec 23 23:58:03 2023 +0100 - graphieros

Commit: 734e305

  • VueUiDonutEvolution create component

Fri Dec 22 16:52:07 2023 +0100 - graphieros

Commit: bfc36ab

  • remove unused file

Fri Dec 22 16:49:04 2023 +0100 - graphieros

Commit: 566f6eb

  • Add tests, include passing tests as a requirement to generate build

Thu Dec 21 16:24:01 2023 +0100 - graphieros

Commit: 39b07d4

  • Update user options menu

Wed Dec 20 07:59:02 2023 +0100 - graphieros

Commit: 1ba80d5

  • VueUiTiremarks create component

Mon Dec 18 13:31:04 2023 +0100 - graphieros

Commit: 5dd3e61

  • VueUiSkeleton add rings & wheel types

Mon Dec 18 07:30:38 2023 +0100 - graphieros

Commit: 63b65b7

  • VueUiWheel improved animation

Sun Dec 17 17:04:34 2023 +0100 - graphieros

Commit: 5a0603d

  • VueUiDonut improve datalabels

Sun Dec 17 10:46:51 2023 +0100 - graphieros

Commit: 4a72ece

  • 1.9.27

Sun Dec 17 10:43:41 2023 +0100 - graphieros

Commit: 67836e4

  • VueUiWheel add exposed methods

Sun Dec 17 09:51:34 2023 +0100 - graphieros

Commit: 9bc51cf

  • VueUiWheel add component

Sat Dec 16 13:31:29 2023 +0100 - graphieros

Commit: 459a312

  • 1.9.24

Sat Dec 16 12:19:18 2023 +0100 - graphieros

Commit: 3656d40

  • Reduce bundle size

Fri Dec 15 19:46:02 2023 +0100 - graphieros

Commit: adb83be

  • Improved design of manual testing arena

Fri Dec 15 19:36:15 2023 +0100 - graphieros

Commit: 6b4ea2c

  • Improved design of manual testing arena

Fri Dec 15 18:10:15 2023 +0100 - graphieros

Commit: e949cbc

  • Improved design of manual testing arena

Fri Dec 15 15:42:14 2023 +0100 - graphieros

Commit: 09e7b4d

  • Refactored with Legend component & added test

Wed Dec 13 15:34:12 2023 +0100 - graphieros

Commit: a7fc0a9

  • VueUiRings create component

Mon Dec 11 07:56:11 2023 +0100 - graphieros

Commit: bda9d19

  • VueUiSparkHistogram add selector 2

Mon Dec 11 07:44:25 2023 +0100 - graphieros

Commit: f8011b5

  • VueUiSparkHistogram add selector

Fri Dec 8 07:14:13 2023 +0100 - graphieros

Commit: 6c960fa

  • VueUiQuadrant fix flex layout in table first col

Thu Dec 7 06:50:24 2023 +0100 - graphieros

Commit: 8f05a50

  • VueUi -Quadrant -Onion -Waffle -Xy -Radar improvements

Tue Dec 5 07:42:24 2023 +0100 - graphieros

Commit: 5a20ea9

  • VueUiQuadrant improve tooltip, fix legend print css issues

Mon Dec 4 07:46:42 2023 +0100 - graphieros

Commit: a4d6f32

  • Reduce bundle size

Sun Dec 3 17:18:12 2023 +0100 - graphieros

Commit: c9678c0

  • Update readme

Sun Dec 3 16:14:22 2023 +0100 - graphieros

Commit: b1c58e4

  • VueUiXy fix highlight area label not visible in Firefox

Sun Dec 3 09:54:45 2023 +0100 - graphieros

Commit: aa701c9

  • Add png download for all components already proposing pdf

Sat Dec 2 10:00:14 2023 +0100 - graphieros

Commit: 6ac926d

  • Reduce bundle size

Fri Dec 1 07:14:46 2023 +0100 - graphieros

Commit: 2f5bc77

  • VueUiXy add highlight area in canvas mode

Thu Nov 30 07:23:36 2023 +0100 - graphieros

Commit: cc5d531

  • VueUiXy prevent highlight area from overflowing on the sides when using zoom

Tue Nov 28 08:15:54 2023 +0100 - graphieros

Commit: 49b8150

  • VueUiXy add highlightArea config option

Mon Nov 27 23:14:03 2023 +0100 - graphieros

Commit: 143ffa4

  • VueUiDonut VueUiOnion add blurOnHover config option

Sun Nov 26 17:50:31 2023 +0100 - graphieros

Commit: 8baddb7

  • VueUiSparkline add verticalIndicator color & strokeDasharray options

Sun Nov 26 09:01:41 2023 +0100 - graphieros

Commit: 7db1b4e

  • VueUiSparkline add bar type

Sat Nov 25 17:54:02 2023 +0100 - graphieros

Commit: e13da26

  • App.vue add preamble

Sat Nov 25 17:31:17 2023 +0100 - graphieros

Commit: 104b9e2

  • VueUiSkeleton add e2e component test

Sat Nov 25 17:07:21 2023 +0100 - graphieros

Commit: 42e2d26

  • VueUiThermometer add e2e component test

Sat Nov 25 11:32:10 2023 +0100 - graphieros

Commit: 7d4ab6a

  • VueUiVerticalBar add e2e component test

Sat Nov 25 10:44:48 2023 +0100 - graphieros

Commit: 9cb541a

  • VueUiSparkStackbar add e2e component test

Sat Nov 25 10:01:59 2023 +0100 - graphieros

Commit: 22f270c

  • VueUiScatter add e2e component test

Fri Nov 24 17:28:56 2023 +0100 - graphieros

Commit: e21865e

  • . use title component . add useNestedProp composable

Wed Nov 22 18:04:38 2023 +0100 - graphieros

Commit: ce20b49

  • VueUiRadar add e2e component test

Wed Nov 22 16:51:07 2023 +0100 - graphieros

Commit: 38fa955

  • VueUiRelationCircle add e2e component test

Wed Nov 22 16:21:56 2023 +0100 - graphieros

Commit: 7edf9fd

  • VueUiQuadrant add e2e component test

Wed Nov 22 08:14:14 2023 +0100 - graphieros

Commit: 20a98e1

  • VueUiCandlestick add e2e component test

Tue Nov 21 11:17:32 2023 +0100 - graphieros

Commit: 51f9240

  • upgrade

Tue Nov 21 10:56:31 2023 +0100 - graphieros

Commit: 92f2918

  • VueUiChestnut add e2e component test

Tue Nov 21 09:45:46 2023 +0100 - graphieros

Commit: fdae409

  • VueUiAnnotator add e2e component test

Tue Nov 21 08:21:14 2023 +0100 - graphieros

Commit: 68e12bb

  • VueUiHeatmap add e2e component test

Mon Nov 20 17:48:52 2023 +0100 - graphieros

Commit: d1db723

  • VueUiOnion add e2e component test

Mon Nov 20 16:47:12 2023 +0100 - graphieros

Commit: 429ee25

  • VueUiGauge add e2e component test

Mon Nov 20 15:56:23 2023 +0100 - graphieros

Commit: b504f1f

  • VueUiWaffle add e2e component test

Mon Nov 20 11:11:57 2023 +0100 - graphieros

Commit: c84fa36

  • VueUiSmiley add e2e component test

Mon Nov 20 10:26:58 2023 +0100 - graphieros

Commit: 25c4657

  • VueUiRating add e2e component test

Mon Nov 20 09:26:11 2023 +0100 - graphieros

Commit: ad29f0f

  • VueUiXy VueUiDonut e2e test for pdf & xlsx downloads

Sun Nov 19 18:12:50 2023 +0100 - graphieros

Commit: 5d4872a

  • VueUiDonut add e2e component test

Sun Nov 19 11:52:49 2023 +0100 - graphieros

Commit: fd514b6

  • VueUiSparkbar add e2e component test

Sun Nov 19 11:43:27 2023 +0100 - graphieros

Commit: 829113a

  • VueUiSparkHistogram add e2e component test

Sun Nov 19 11:11:15 2023 +0100 - graphieros

Commit: df7523c

  • VueUiSparkline add e2e component test

Sat Nov 18 14:27:00 2023 +0100 - graphieros

Commit: 584720f

  • add build steps automation

Fri Nov 17 06:54:14 2023 +0100 - graphieros

Commit: 6c64934

  • VueUiXy add component e2e cypress test

Thu Nov 16 07:14:33 2023 +0100 - graphieros

Commit: 41755ea

  • VueUiQuadrant fix xAxis labels position issue

Wed Nov 15 17:50:18 2023 +0100 - graphieros

Commit: 882f4b0

  • improve ui test environment

Mon Nov 13 07:46:13 2023 +0100 - graphieros

Commit: 86f87c7

  • VueUiRelationCircle reset on click outside

Sun Nov 12 17:21:06 2023 +0100 - graphieros

Commit: 177330f

  • VueUiSparkline add smooth line option

Sun Nov 12 16:38:19 2023 +0100 - graphieros

Commit: 042880a

  • VueUiXy add smooth curve option for line types in SVG mode

Sat Nov 11 09:30:46 2023 +0100 - graphieros

Commit: 29f6f51

  • VueUiSparkHistogram add component

Fri Nov 10 07:27:43 2023 +0100 - graphieros

Commit: cf2f8db

  • Optional css animation

Thu Nov 9 08:35:34 2023 +0100 - graphieros

Commit: dd79571

  • VueUiXy add option to display line types as areas

Wed Nov 8 10:00:59 2023 +0100 - graphieros

Commit: bddde60

  • VueUiSparkStackbar add legend margin

Wed Nov 8 09:38:17 2023 +0100 - graphieros

Commit: 62a0218

  • VueUiSparkStackbar add component

Sun Nov 5 18:37:01 2023 +0100 - graphieros

Commit: 67e34c1

  • expose generatePdf & generateXls methods

Sun Nov 5 11:50:56 2023 +0100 - graphieros

Commit: a6fcf71

  • VueUiThermometer add component

Fri Nov 3 16:35:28 2023 +0100 - graphieros

Commit: 57003b5

  • VueUiRelationCircle create component

Thu Nov 2 16:05:34 2023 +0100 - graphieros

Commit: 410a46f

  • VueUiXy add useCanvas option (experimental)

Mon Oct 30 08:45:54 2023 +0100 - graphieros

Commit: 463bbfc

  • update readme

Mon Oct 30 06:23:40 2023 +0100 - graphieros

Commit: 50bfb7a

  • VueUiSkeleton add smiley option in rating type

Sun Oct 29 09:08:08 2023 +0100 - graphieros

Commit: 9424fe4

  • VueUiSmiley add keyboard support

Sun Oct 29 08:04:29 2023 +0100 - graphieros

Commit: ddd183e

  • update types

Sat Oct 28 18:11:29 2023 +0200 - graphieros

Commit: 333211e

  • VueUiSmiley create component

Thu Oct 26 08:11:35 2023 +0200 - graphieros

Commit: c4e4f23

  • add animation

Sun Oct 22 10:50:17 2023 +0200 - graphieros

Commit: 6478d20

  • VueUiAnnotator add touch support

Sat Oct 21 18:51:10 2023 +0200 - graphieros

Commit: 7d9e1c0

  • VueUiAnnotator create component

Thu Oct 19 07:38:48 2023 +0200 - graphieros

Commit: 563ba89

  • VueUiDashboard fix bg color

Thu Oct 19 07:17:23 2023 +0200 - graphieros

Commit: ae9373c

  • VueUiDashboard replace prop elements with dataset

Thu Oct 19 06:56:14 2023 +0200 - graphieros

Commit: 59ceacc

  • condition padding top on the use of userOption detail

Thu Oct 19 06:56:14 2023 +0200 - graphieros

Commit: f3494fd

  • condition padding top on the use of userOption detail

Wed Oct 18 08:23:19 2023 +0200 - graphieros

Commit: bdc1684

  • VueUiDashboard use aspect ratio instead of height

Mon Oct 16 09:38:26 2023 +0200 - graphieros

Commit: b91ed3a

  • VueUiDashboard create component

Wed Oct 11 06:57:58 2023 +0200 - graphieros

Commit: ce4e43f

  • VueUiSkeleton add Sparkline type

Sun Oct 8 16:13:43 2023 +0200 - graphieros

Commit: bbaa5e7

  • VueUiSparkbar create component

Sat Oct 7 17:19:05 2023 +0200 - graphieros

Commit: 1e81952

  • minor fixes related to data labels formatting

Wed Oct 4 06:35:58 2023 +0200 - graphieros

Commit: 419482b

  • VueUiScatter add getData exposed method

Mon Oct 2 08:17:59 2023 +0200 - graphieros

Commit: 53ebaea

  • VueUiVerticalBar add legend position top or bottom option for better UX

Sun Oct 1 15:40:24 2023 +0200 - graphieros

Commit: fef9d3f

  • VueUiVerticalBar improve tooltip & legend markers

Sat Sep 23 17:26:20 2023 +0200 - graphieros

Commit: 839f479

  • VueUiXy fix minor css flex issue in tooltip

Sun Sep 17 09:03:55 2023 +0200 - graphieros

Commit: 539cb60

  • VueUiXy fix error when zoom is deactivated; fix tooltip default bg color

Sat Sep 16 10:03:42 2023 +0200 - graphieros

Commit: 2f0bfc4

  • VueUiSkeleton add pyramid type

Fri Sep 15 07:23:20 2023 +0200 - graphieros

Commit: 9798f18

  • update readme

Thu Sep 14 07:38:47 2023 +0200 - ALEC LLOYD PROBERT

Commit: a21031e

  • Create LICENSE

Thu Sep 14 07:37:56 2023 +0200 - ALEC LLOYD PROBERT

Commit: 1f74743

  • Create CONTRIBUTING.md

Thu Sep 14 07:34:48 2023 +0200 - ALEC LLOYD PROBERT

Commit: 937b226

  • Create CODE_OF_CONDUCT.md

Wed Sep 13 08:21:31 2023 +0200 - graphieros

Commit: 246695f

  • replace unicode icons with svg elements

Sun Sep 10 11:29:14 2023 +0200 - graphieros

Commit: 5b748a2

  • VueUiAgePyramid minor fixes

Sun Sep 10 11:15:43 2023 +0200 - graphieros

Commit: dcd3730

  • VueUiAgePyramid create component

Tue Sep 5 09:26:44 2023 +0200 - graphieros

Commit: 420c321

  • add composables for useMouse & calcTooltipPosition

Tue Sep 5 07:24:22 2023 +0200 - graphieros

Commit: 372ca73

  • VueUiSkeleton add candlesticks type

Mon Sep 4 17:16:58 2023 +0200 - graphieros

Commit: 0b975d7

  • VueUiCandlestick fux minor bugs

Mon Sep 4 09:54:49 2023 +0200 - graphieros

Commit: b821d2b

  • VueUiCandlestick create component

Fri Sep 1 08:32:35 2023 +0200 - graphieros

Commit: 7866f35

  • VueUiTable fix sign of linear progression

Thu Aug 31 11:24:43 2023 +0200 - graphieros

Commit: a816f6c

  • VueUiXy improve zoom functionality

Wed Aug 30 17:02:33 2023 +0200 - graphieros

Commit: 196de66

  • VueUiScatter create component

Tue Aug 29 10:34:52 2023 +0200 - graphieros

Commit: a5fc363

  • VueUiSkeleton add heatmap type

Tue Aug 29 10:17:50 2023 +0200 - graphieros

Commit: 1a83d4a

  • update version

Tue Aug 29 08:41:43 2023 +0200 - graphieros

Commit: 2ba48ec

  • finalize heatmap

Mon Aug 28 18:27:33 2023 +0200 - graphieros

Commit: 181080b

  • wip heatmap finalize xls export

Mon Aug 28 18:23:49 2023 +0200 - graphieros

Commit: c072e07

  • wip heatmap

Tue Aug 22 07:31:02 2023 +0200 - graphieros

Commit: 25189ec

  • reduce bundle size, release 1.0.0

Sat Aug 19 01:04:36 2023 +0200 - graphieros

Commit: 7de1e90

  • VueUiXy fix progress label sign always positive

Fri Aug 18 07:22:42 2023 +0200 - graphieros

Commit: 95c70d8

  • VueUiXy fix crash on filtering periods to empty array

Wed Aug 16 08:57:16 2023 +0200 - graphieros

Commit: 615557e

  • VuUiSkeleton add chestnut type

Tue Aug 15 09:10:14 2023 +0200 - graphieros

Commit: a946903

  • VueUiXy fix trend calculation

Fri Aug 11 18:23:48 2023 +0200 - graphieros

Commit: 7b41f94

  • Add type definitions

Fri Aug 11 12:42:37 2023 +0200 - graphieros

Commit: fac307e

  • VueUiSparkline create component

Thu Aug 10 18:10:37 2023 +0200 - graphieros

Commit: df05b22

  • VueUiSkeleton fix css overflow issue

Thu Aug 10 17:54:07 2023 +0200 - graphieros

Commit: 1e0b8e5

  • VueUiXy fix x dataLabel centering issue on bar types

Thu Aug 10 14:20:08 2023 +0200 - graphieros

Commit: d2f469a

  • VueUiSkeleton create component

Thu Aug 10 08:32:11 2023 +0200 - graphieros

Commit: ab0c225

  • VueUiScreenshot add createdAt & fileSize metadata in post mode

Wed Aug 9 19:37:48 2023 +0200 - graphieros

Commit: af151ab

  • VueUiRating create component

Wed Aug 9 11:12:42 2023 +0200 - graphieros

Commit: 3227e22

  • VuUiScreenshot add component

Tue Aug 8 15:54:35 2023 +0200 - graphieros

Commit: 11a505d

  • VueUiXy add tag, progression, & individual control on dataLabels display

Tue Aug 8 14:18:06 2023 +0200 - graphieros

Commit: 952074d

  • VueUiXy add dashed line option

Tue Aug 8 13:45:29 2023 +0200 - graphieros

Commit: ba9a2c6

  • VueUiXy fix table not showing through option checkbox

Tue Aug 8 10:52:01 2023 +0200 - graphieros

Commit: 6f1a6ef

  • VueUiVerticalBar add sort

Tue Aug 8 09:59:44 2023 +0200 - graphieros

Commit: 81f0e07

  • VueUiVerticalBar fix config

Mon Aug 7 21:30:44 2023 +0200 - graphieros

Commit: b1dd027

  • create VueUiVerticalBar, centralize config

Mon Aug 7 08:40:12 2023 +0200 - graphieros

Commit: d7fe552

  • add unit tests

Mon Aug 7 07:34:14 2023 +0200 - graphieros

Commit: 1819771

  • VueUiOnion fix label y position issue

Sun Aug 6 18:20:42 2023 +0200 - graphieros

Commit: 5700dd2

  • create VueUiOnion

Sun Aug 6 02:20:52 2023 +0200 - graphieros

Commit: 51bc588

  • VueUiXy fix sum errors on multiple series

Sun Aug 6 01:30:55 2023 +0200 - graphieros

Commit: 3d294ca

  • VueUiXy add zoom; VueUiRadar fix non closing shape in Firefox

Sat Aug 5 19:04:13 2023 +0200 - graphieros

Commit: c748af5

  • convert all RGB, HSL, 'transparent' color formats to HEX

Sat Aug 5 12:22:24 2023 +0200 - graphieros

Commit: c3efa27

  • VueUiXy add highlighter options; VueUiChestnut add emits & getData

Sat Aug 5 11:00:16 2023 +0200 - graphieros

Commit: 2729523

  • update readme

Sat Aug 5 10:17:38 2023 +0200 - graphieros

Commit: fa6ce2d

  • VueUiXy fix dataLabels on y axis not showing if min value > 0

Fri Aug 4 18:03:47 2023 +0200 - graphieros

Commit: 5e41a82

  • fix typos

Fri Aug 4 15:54:32 2023 +0200 - graphieros

Commit: 8d2f237

  • create vue-ui-chestnut

Thu Aug 3 11:07:41 2023 +0200 - graphieros

Commit: 8e82ac0

  • create vue-ui-gauge

Wed Aug 2 17:28:23 2023 +0200 - graphieros

Commit: 695ae34

  • create vue-data-quadrant

Tue Aug 1 23:36:21 2023 +0200 - graphieros

Commit: 4de4177

  • add emits & getData methods

Tue Aug 1 16:43:59 2023 +0200 - graphieros

Commit: 3f59a72

  • create vue-data-radar

Tue Aug 1 08:02:24 2023 +0200 - graphieros

Commit: ebc52ea

  • fix waffle config

Mon Jul 31 22:11:10 2023 +0200 - graphieros

Commit: 53f6c51

  • update readme

Mon Jul 31 19:24:51 2023 +0200 - graphieros

Commit: 94f343a

  • prepare pr

Mon Jul 31 19:13:05 2023 +0200 - graphieros

Commit: 3a29f79

  • refacto to one pdf method, last steps waffle wip

Mon Jul 31 18:06:38 2023 +0200 - graphieros

Commit: 7e268c8

  • wip waffle

Mon Jul 31 09:19:03 2023 +0200 - graphieros

Commit: d00bbf3

  • place options summary further up

Mon Jul 31 08:57:17 2023 +0200 - graphieros

Commit: 24171fb

  • fix css in table xy

Mon Jul 31 08:35:41 2023 +0200 - graphieros

Commit: 8ab4b99

  • fix rounding models, update table style options for xy

Sun Jul 30 23:14:38 2023 +0200 - graphieros

Commit: 8f11e11

  • finalize donut; improve xy

Sun Jul 30 12:47:43 2023 +0200 - graphieros

Commit: 196300c

  • create donut

Sun Jul 30 12:47:22 2023 +0200 - graphieros

Commit: baf3390

  • apply lib to table & xy

Sun Jul 30 12:46:52 2023 +0200 - graphieros

Commit: 2883bb6

  • add lib

Sat Jul 29 19:21:16 2023 +0200 - graphieros

Commit: 5e50840

  • add vue-ui-donut boilerplate

Sat Jul 29 19:34:18 2023 +0200 - graphieros

Commit: 54dff35

  • fix placement of donut in firefox

Sat Jul 29 19:21:16 2023 +0200 - graphieros

Commit: 538655c

  • add vue-ui-donut boilerplate

Sat Jul 29 19:15:08 2023 +0200 - graphieros

Commit: bbd3f88

  • todos

Sat Jul 29 11:40:39 2023 +0200 - graphieros

Commit: a9900ee

  • update package & readme

Sat Jul 29 11:01:09 2023 +0200 - graphieros

Commit: d712a2c

  • update version

Sat Jul 29 09:47:08 2023 +0200 - graphieros

Commit: d8c9e9c

  • fix bug bar chart with all neg values wrong start y pos

Sat Jul 29 09:34:28 2023 +0200 - graphieros

Commit: b903337

  • fix css defaults

Thu Jul 27 08:29:43 2023 +0200 - graphieros

Commit: 8265bb3

  • fixes

Mon Jul 24 17:43:07 2023 +0200 - graphieros

Commit: 8a3c2f0

  • first commit