diff --git a/DOCS/DemoView.vue b/DOCS/DemoView.vue
index 19d2544..bf94de3 100644
--- a/DOCS/DemoView.vue
+++ b/DOCS/DemoView.vue
@@ -17,52 +17,27 @@
!!!
-
@@ -177,9 +152,14 @@
-
+
+
+
+
-
+
@@ -388,8 +368,8 @@
Hover me!
-
- Hello this is a Tooooooooool Tip
+
+ Hello this is a Tooooooooool Tip
@@ -610,7 +590,7 @@ export default {
name: 'DemoView',
data: () => ({
- warningData: [],
+ dataPool: [[], [], []],
listItem: 0,
@@ -660,9 +640,23 @@ export default {
this.progressValue += 15
}, 1000)*/
- setInterval(() => {
- this.warningData.push(Math.random()*30)
- }, 10000)
+ for (let i = 0; i < 4; i++) {
+ this.dataPool[0].push(Math.random() * 30)
+ this.dataPool[1].push(Math.random() * 62)
+ this.dataPool[2].push(Math.random() * 15)
+
+ this.dataPool[0].push(Math.random() * 544)
+ this.dataPool[1].push(Math.random() * 454)
+ this.dataPool[2].push(Math.random() * 344)
+
+ this.dataPool[0].push(Math.random() * 432)
+ this.dataPool[1].push(Math.random() * 303)
+ this.dataPool[2].push(Math.random() * 301)
+
+ this.dataPool[0].push(Math.random() * 200)
+ this.dataPool[1].push(Math.random() * 200)
+ this.dataPool[2].push(Math.random() * 200)
+ }
},
methods: {