|
2 | 2 | <div class="container">
|
3 | 3 | <div class="Chart">
|
4 | 4 | <h1 style="text-align:center;">Barchart</h1>
|
5 |
| - <bar-example></bar-example> |
| 5 | + <bar-example/> |
6 | 6 | </div>
|
7 | 7 |
|
8 | 8 | <div class="Chart">
|
9 | 9 | <h1 style="text-align:center;">Horizontal Barchart</h1>
|
10 |
| - <horizontal-bar-example></horizontal-bar-example> |
| 10 | + <horizontal-bar-example/> |
11 | 11 | </div>
|
12 | 12 |
|
13 | 13 | <div class="Chart">
|
14 | 14 | <h1 style="text-align:center;">Barchart with reactive mixing for live data</h1>
|
15 |
| - <reactive-example></reactive-example> |
| 15 | + <reactive-example/> |
16 | 16 | </div>
|
17 | 17 |
|
18 | 18 | <div class="Chart">
|
19 | 19 | <h1 style="text-align:center;">Barchart with reactive mixing for live data as props</h1>
|
20 |
| - <reactive-prop-example :chart-data="dataPoints"></reactive-prop-example> |
| 20 | + <reactive-prop-example :chart-data="dataPoints"/> |
21 | 21 | </div>
|
22 | 22 |
|
23 | 23 | <div class="Chart">
|
24 | 24 | <h1 style="text-align:center;">Linechart</h1>
|
25 |
| - <line-example></line-example> |
| 25 | + <line-example/> |
26 | 26 | </div>
|
27 | 27 |
|
28 | 28 | <div class="Chart">
|
29 | 29 | <h1 style="text-align:center;">Doughnutchart</h1>
|
30 |
| - <doughnut-example></doughnut-example> |
| 30 | + <doughnut-example/> |
31 | 31 | </div>
|
32 | 32 |
|
33 | 33 | <div class="Chart">
|
34 | 34 | <h1 style="text-align:center;">Piechart</h1>
|
35 |
| - <pie-example></pie-example> |
| 35 | + <pie-example/> |
36 | 36 | </div>
|
37 | 37 |
|
38 | 38 | <div class="Chart">
|
39 | 39 | <h1 style="text-align:center;">Radarchart</h1>
|
40 |
| - <radar-example></radar-example> |
| 40 | + <radar-example/> |
41 | 41 | </div>
|
42 | 42 |
|
43 | 43 | <div class="Chart">
|
44 | 44 | <h1 style="text-align:center;">Polararea</h1>
|
45 |
| - <polar-area-example></polar-area-example> |
| 45 | + <polar-area-example/> |
46 | 46 | </div>
|
47 | 47 |
|
48 | 48 | <div class="Chart">
|
49 | 49 | <h1 style="text-align:center;">Bubblechart</h1>
|
50 |
| - <bubble-example></bubble-example> |
| 50 | + <bubble-example /> |
51 | 51 | </div>
|
52 | 52 |
|
53 | 53 | <div class="Chart">
|
54 | 54 | <h1 style="text-align:center;">Scatter Chart</h1>
|
55 |
| - <scatter-example></scatter-example> |
| 55 | + <scatter-example /> |
| 56 | + </div> |
| 57 | + <div class="Chart"> |
| 58 | + <h1 style="text-align:center;">Custom Line Chart</h1> |
| 59 | + <custom-line /> |
56 | 60 | </div>
|
57 | 61 | </div>
|
58 | 62 | </template>
|
|
69 | 73 | import ReactivePropExample from './ReactivePropExample'
|
70 | 74 | import ScatterExample from './ScatterExample'
|
71 | 75 | import HorizontalBarExample from './HorizontalBarExample'
|
| 76 | + import CustomLine from './CustomExample' |
72 | 77 |
|
73 | 78 | export default {
|
74 | 79 | components: {
|
75 | 80 | BarExample,
|
76 | 81 | LineExample,
|
77 | 82 | DoughnutExample,
|
| 83 | + CustomLine, |
78 | 84 | PieExample,
|
79 | 85 | RadarExample,
|
80 | 86 | PolarAreaExample,
|
|
0 commit comments