vue-data-ui 2.0.3 → 2.0.5

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
@@ -108,6 +108,17 @@ Types are available in the 'vue-data-ui.d.ts' file under the types directory of
108
108
  ## Nuxt
109
109
  [This repo contains a boilerplate implementation of the vue-data-ui package in Nuxt](https://github.com/graphieros/vue-data-ui-nuxt)
110
110
 
111
+ # Customizable tooltips
112
+ Charts with tooltips have a config option to customize tooltip contents:
113
+
114
+ ```
115
+
116
+ customFormat: ({ seriesIndex, datapoint, series, config }) => {
117
+ return `<div>${ ... }</div>`;
118
+ }
119
+
120
+ ```
121
+
111
122
  # Slots
112
123
  Most Vue Data UI chart components include a #svg slot you can use to introduce customized svg elements (shapes, text, etc).
113
124