vue-data-ui 2.2.18 → 2.2.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,10 +9,10 @@
9
9
  # vue-data-ui
10
10
 
11
11
  ![npm](https://img.shields.io/npm/v/vue-data-ui)
12
- ![Static Badge](https://img.shields.io/badge/components-50-blue)
12
+ ![Static Badge](https://img.shields.io/badge/components-51-blue)
13
13
  [![MadeWithVueJs.com shield](https://madewithvuejs.com/storage/repo-shields/4526-shield.svg)](https://madewithvuejs.com/p/vue-data-ui/shield-link)
14
14
  ![GitHub issues](https://img.shields.io/github/issues/graphieros/vue-data-ui)
15
- ![NPM](https://img.shields.io/npm/l/vue-data-ui)
15
+ [![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE)
16
16
  ![npm](https://img.shields.io/npm/dt/vue-data-ui)
17
17
 
18
18
  [Interactive documentation](https://vue-data-ui.graphieros.com/)
@@ -51,6 +51,7 @@ Available components
51
51
  - [VueUiWheel](https://vue-data-ui.graphieros.com/docs#vue-ui-wheel)
52
52
  - [VueUiWordCloud](https://vue-data-ui.graphieros.com/docs#vue-ui-word-cloud)
53
53
  - [VueUiXy](https://vue-data-ui.graphieros.com/docs#vue-ui-xy)
54
+ - [VueUiXyCanvas](https://vue-data-ui.graphieros.com/docs#vue-ui-xy-canvas)
54
55
 
55
56
  ## Mini charts
56
57
 
@@ -244,6 +245,7 @@ The following charts bear these slots:
244
245
  - VueUiVerticalBar
245
246
  - VueUiXy \*
246
247
  - VueUiwaffle
248
+ - VueUiXyCanvas
247
249
 
248
250
  \* VueUiXy slots specifically expose the following additional attributes:
249
251
 
@@ -384,6 +386,7 @@ From the dataset you pass into the props, this component will produce the most a
384
386
  | `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ | ✅ |
385
387
  | `VueUiWordCloud` | `VueUiWordCloudDatasetItem[] / string` | `VueUiWordCloudConfig` | `getData`, `generatePdf`, `generateImage`, `generateCsv` | `#svg` | ❌ | ✅ |
386
388
  | `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
389
+ | `VueUiXyCanvas` | `VueUiXyCanvasDatasetItem[]` | `VueUiXyCanvasConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
387
390
 
388
391
  ### 3D charts
389
392
 
@@ -460,6 +463,7 @@ It is possible to provide a custom palette in the config prop through config.cus
460
463
  - VueUiWaffle
461
464
  - VueUiWordCloud
462
465
  - VueUiXy
466
+ - VueUiXyCanvas
463
467
 
464
468
  If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette.
465
469
  Accepted color formats: HEX, RGB, HSL, named colors.
@@ -168,6 +168,7 @@ From the dataset you pass into the props, this component will produce the most a
168
168
  | `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ | ✅ |
169
169
  | `VueUiWordCloud` | `VueUiWordCloudDatasetItem[] / string` | `VueUiWordCloudConfig` | `getData`, `generatePdf`, `generateImage`, `generateCsv` | `#svg` | ❌ | ✅ |
170
170
  | `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
171
+ | `VueUiXyCanvas` | `VueUiXyCanvasDatasetItem[]` | `VueUiXyCanvasConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
171
172
 
172
173
  ### 3D charts
173
174
 
@@ -244,6 +245,7 @@ It is possible to provide a custom palette in the config prop through config.cus
244
245
  - VueUiWaffle
245
246
  - VueUiWordCloud
246
247
  - VueUiXy
248
+ - VueUiXyCanvas
247
249
 
248
250
  If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette.
249
251
  Accepted color formats: HEX, RGB, HSL, named colors.