Skip to content

Commit

Permalink
Bump vue3-apexcharts from 1.5.3 to 1.6.0 in /aas-web-ui (#3)
Browse files Browse the repository at this point in the history
* Bump vue3-apexcharts from 1.5.3 to 1.6.0 in /aas-web-ui

Bumps [vue3-apexcharts](https://github.com/apexcharts/vue3-apexcharts) from 1.5.3 to 1.6.0.
- [Commits](https://github.com/apexcharts/vue3-apexcharts/commits)

---
updated-dependencies:
- dependency-name: vue3-apexcharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump vue3-apexcharts from 1.5.3 to 1.6.0 in /aas-web-ui

Bumps [vue3-apexcharts](https://github.com/apexcharts/vue3-apexcharts) from 1.5.3 to 1.6.0.
- [Commits](https://github.com/apexcharts/vue3-apexcharts/commits)

---
updated-dependencies:
- dependency-name: vue3-apexcharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump vue3-apexcharts from 1.5.3 to 1.6.0 in /aas-web-ui

Bumps [vue3-apexcharts](https://github.com/apexcharts/vue3-apexcharts) from 1.5.3 to 1.6.0.
- [Commits](https://github.com/apexcharts/vue3-apexcharts/commits)

---
updated-dependencies:
- dependency-name: vue3-apexcharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixes line chart default chart series

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aaron Zielstorff <[email protected]>
  • Loading branch information
dependabot[bot] and aaronzi authored Sep 13, 2024
1 parent af74607 commit 2b94735
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion aas-web-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"uuid": "^10.0.0",
"vue": "^3.5.5",
"vue-router": "^4.4.3",
"vue3-apexcharts": "^1.5.3",
"vue3-apexcharts": "^1.6.0",
"vuetify": "^3.7.1",
"webfontloader": "^1.0.0"
},
Expand Down
13 changes: 6 additions & 7 deletions aas-web-ui/src/components/Widgets/LineChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,21 @@
data() {
return {
chartSeries: [
{
name: 'Value',
data: [],
},
] as Array<any>,
chartSeries: [] as Array<any>,
chartOptions: {
chart: {
id: 'line',
type: 'line',
height: 350,
background: '#ffffff00',
},
dataLabels: {
enabled: false,
},
xaxis: {
type: 'datetime',
range: 60000,
tickAmount: 10,
labels: {
datetimeFormatter: {
year: 'yyyy',
Expand All @@ -98,7 +97,7 @@
grid: {
xaxis: {
lines: {
show: true,
show: false,
},
},
},
Expand Down
8 changes: 4 additions & 4 deletions aas-web-ui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2400,10 +2400,10 @@ vue-tsc@^2.1.4:
"@vue/language-core" "2.1.4"
semver "^7.5.4"

vue3-apexcharts@^1.5.3:
version "1.5.3"
resolved "https://registry.yarnpkg.com/vue3-apexcharts/-/vue3-apexcharts-1.5.3.tgz#45f685a2dd21058c0d76ab2145eb3ec27d8fb14c"
integrity sha512-yaHTPoj0iVKAtEVg8wEwIwwvf0VG+lPYNufCf3txRzYQOqdKPoZaZ9P3Dj3X+2A1XY9O1kcTk9HVqvLo+rppvQ==
vue3-apexcharts@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/vue3-apexcharts/-/vue3-apexcharts-1.6.0.tgz#2ea6eb9acdd3c31cff790b67d6c2bf1b38cc09f6"
integrity sha512-gemKFXpw4TuVcllwyKJGYjTwiJQxxCUwbXsiiEEZjs0zc9jvOHvreN8frXz7QbnYqMqOHF9D1TBqwENvoPNjLw==

vue@^3.2.25, vue@^3.5.5:
version "3.5.5"
Expand Down

0 comments on commit 2b94735

Please sign in to comment.