Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 7f019d2

Browse files
Update README.md
chart images
1 parent cfc025c commit 7f019d2

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,30 @@ The bar chart has an extra param
6262
* orientation : this can be 'horizontal' or 'vertical'
6363

6464
#### Barchart
65-
65+
<p align="center">
66+
<img src="https://github.com/LLoadout/assets/blob/master/components/barchart-horizontal.png" title="LLoadout Components - bar chart">
67+
</p>
6668
<x-load-barchart title="Provide a title" key="delayed-{{ now() }}" orientation='horizontal' :data="[10,20,70]" :labels="['a']"></x-load-barchart>
6769

6870
#### Stacked barchart
69-
71+
<p align="center">
72+
<img src="https://github.com/LLoadout/assets/blob/master/components/barchart-stacked.png" title="LLoadout Components - stacked bar chart">
73+
</p>
7074
For the stacked barchart you can use the same tag as for the simple barchart , it takes an array of arrays as data
7175

7276
<x-load-barchart title="Provide a title" key="delayed-{{ now() }}" orientation='horizontal' :data="[[10,20,70],[10,20,70],[10,20,70]]" :labels="['a']"></x-load-barchart>
7377

7478

7579
#### Piechart
76-
80+
<p align="center">
81+
<img src="https://github.com/LLoadout/assets/blob/master/components/piechart.png" title="LLoadout Components - pie chart">
82+
</p>
7783
<x-load-piechart title="Provide a title" key="delayed-{{ now() }}" :data="[10,20,70]" :labels="['a']"></x-load-piechart>
7884

7985
#### Linechart
86+
<p align="center">
87+
<img src="https://github.com/LLoadout/assets/blob/master/components/linechart.png" title="LLoadout Components - line chart">
88+
</p>
8089
<x-load-linechart title="Provide a title" key="delayed-{{ now() }}" :data="[10,20,70]" :labels="['a']"></x-load-linechart>
8190

8291
### Signature

0 commit comments

Comments
 (0)