- This content shows last
+ This content shows the last
```
-The #tooltip-before & #tooltip-after slots also works when using the VueDataUi universal component, if the component it wraps supports them.
+The #tooltip-before & #tooltip-after slots also work when using the VueDataUi universal component, if the component it wraps supports them.
## Add a watermark using the #watermark slot
@@ -539,8 +539,8 @@ All names of available icons are available in the vue-data-ui.d.ts file under th
# 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:
+User options menu is accessible in the burger menu located on the top right of the charts, and visible by default.
+To hide the user options menu, set config.userOptions.show to false:
```js
const config = ref({
@@ -551,7 +551,7 @@ const config = ref({
})
```
-User options menu can be set to appear only when hovering the component:
+The user options menu can be set to appear only when hovering over the component:
```js
const config = ref({
@@ -563,7 +563,7 @@ const config = ref({
});
```
-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.
+Predefined actions in the user options menu depend on the type of chart. Some charts have more or fewer actions available. Action buttons contain predefined icons by default.
To hide a given action, set the userOption.buttons, for example:
@@ -596,7 +596,7 @@ What happens when the button is clicked is taken care of by the component, excep
```
-You can pass a callback trhough the config, for each button, to override the default behavior:
+You can pass a callback through the config, for each button, to override the default behavior:
```ts
const config = {
@@ -611,7 +611,7 @@ const config = {
csv: (csvStr: string) => {
console.log(csvStr);
},
- // the other atributes also have the same names as the buttons
+ // the other attributes also have the same names as the buttons
},
},
};
@@ -752,7 +752,7 @@ 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:
+However the following charts can be made fully responsive, making them better to use in resizable containers:
| Component | Responsive feature implemented |
| --------------------------- | ------------------------------ |
@@ -827,7 +827,7 @@ The following charts use the LTTB algorithm (Largest-Triangle-Three-Bucket) beyo
| Component | Default Threshold | Remark |
| --------------- | ----------------- | --------------------------------------------------------- |
| VueUiXy | 1095 | |
-| VueUiXyCanvas | 10000 | Since this chart uses canvas, threhsold can be set higher |
+| VueUiXyCanvas | 10000 | Since this chart uses canvas, the threshold can be set higher |
| VueUiQuadrant | 1095 | |
| VueUiScatter | 1095 | |
| VueUiSparkline | 1095 | |
@@ -884,7 +884,7 @@ A pattern element must be used inside this slot. It will be injected inside a de
```html