@tekkare/auriga 0.2.52 → 0.2.53

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/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.52"
7
+ "version": "0.2.53"
8
8
  }
@@ -178,7 +178,12 @@ export default defineComponent({
178
178
  props.options["colors"] = props.colors;
179
179
  }
180
180
  if (props.type === "line") {
181
- props.options["stroke"] = { width: 3, curve: "smooth" };
181
+ if (props.options["stroke"] === void 0) {
182
+ if (allValues.length === 1) {
183
+ props.options["stroke"] = { show: false };
184
+ } else
185
+ props.options["stroke"] = { width: 3, curve: "smooth" };
186
+ }
182
187
  let defaultDataLabelsConfig = {
183
188
  enabled: true,
184
189
  position: "top",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.52",
3
+ "version": "0.2.53",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",