|
7 | 7 |
|
8 | 8 | This package offers simple and easy integration of google charts with laravel . |
9 | 9 |
|
10 | | -##Features: |
| 10 | +##Features: |
11 | 11 | -Fast and simple . Also you can provide Google chart options to documneted on google Chart API by creating a multidiemsional PHP array. |
12 | 12 | - Multiple Chart of same and different types can be loaded on same page. |
13 | 13 |
|
@@ -143,7 +143,7 @@ $options = [ |
143 | 143 |
|
144 | 144 |
|
145 | 145 |
|
146 | | -##Bar chart |
| 146 | +##Bar chart |
147 | 147 | ``` php |
148 | 148 |
|
149 | 149 |
|
@@ -186,7 +186,7 @@ blade.php file code |
186 | 186 | ``` |
187 | 187 |
|
188 | 188 |
|
189 | | -##Coloring bar chart |
| 189 | +##Coloring bar chart |
190 | 190 | ``` php |
191 | 191 | $options = [ |
192 | 192 | 'title' => 'Population of Largest U.S. Cities', |
@@ -227,7 +227,7 @@ blade.php file code |
227 | 227 |
|
228 | 228 | |
229 | 229 |
|
230 | | -##Stacaked Bar Chart |
| 230 | +##Stacked Bar Chart |
231 | 231 | ``` php |
232 | 232 | $options = [ |
233 | 233 | 'width' => 800, |
@@ -306,7 +306,7 @@ blade.php file code |
306 | 306 |
|
307 | 307 |
|
308 | 308 |
|
309 | | -##Candlestick charts |
| 309 | +##Candlestick charts |
310 | 310 | ``` php |
311 | 311 |
|
312 | 312 | $rows = [ |
@@ -342,7 +342,7 @@ blade.php file code |
342 | 342 |
|
343 | 343 |
|
344 | 344 |
|
345 | | -##Waterfall charts |
| 345 | +##Waterfall charts |
346 | 346 |
|
347 | 347 | ``` php |
348 | 348 | $rows = [ |
@@ -387,7 +387,7 @@ blade.php file code |
387 | 387 |
|
388 | 388 |
|
389 | 389 |
|
390 | | -##Combo Chart |
| 390 | +##Combo Chart |
391 | 391 |
|
392 | 392 | ``` php |
393 | 393 | $cols = ['Month', 'Bolivia', 'Ecuador', 'Madagascar', 'Papua New Guinea', 'Rwanda', 'Average']; |
@@ -428,7 +428,7 @@ blade.php file code |
428 | 428 |
|
429 | 429 |
|
430 | 430 |
|
431 | | -##Pie Chart |
| 431 | +##Pie Chart |
432 | 432 | |
433 | 433 | ``` php |
434 | 434 | $cols = ['Major', 'Degrees']; |
@@ -457,7 +457,7 @@ blade.php file code |
457 | 457 |
|
458 | 458 |
|
459 | 459 |
|
460 | | -##3D Pie Chart |
| 460 | +##3D Pie Chart |
461 | 461 | ``` php |
462 | 462 | $cols = ['Major', 'Degrees']; |
463 | 463 | $rows = [ |
@@ -486,7 +486,7 @@ blade.php file code |
486 | 486 | ``` |
487 | 487 |
|
488 | 488 |
|
489 | | -##ScatterChart |
| 489 | +##ScatterChart |
490 | 490 |
|
491 | 491 | ``` php |
492 | 492 | $cols = ['Age', 'Weight']; |
@@ -528,7 +528,7 @@ blade.php file code |
528 | 528 | ``` |
529 | 529 |
|
530 | 530 |
|
531 | | -##Stepped Chart |
| 531 | +##Stepped Chart |
532 | 532 | ``` php |
533 | 533 | $cols = ['Director (Year)', 'Rotten Tomatoes', 'IMDB']; |
534 | 534 | $rows = [ |
@@ -559,7 +559,7 @@ blade.php file code |
559 | 559 | |
560 | 560 | ``` |
561 | 561 |
|
562 | | -##Tree Map Charts |
| 562 | +##Tree Map Charts |
563 | 563 |
|
564 | 564 | ``` php |
565 | 565 | $cols = ['Location', 'Parent', 'Market trade volume (size)', 'Market increase/decrease (color)']; |
@@ -618,7 +618,7 @@ blade.php file code |
618 | 618 | |
619 | 619 | ``` |
620 | 620 |
|
621 | | -##Scatter Chart |
| 621 | +##Scatter Chart |
622 | 622 | ``` php |
623 | 623 | $cols = ['Diameter', 'Age']; |
624 | 624 | $rows = [ |
@@ -660,7 +660,7 @@ blade.php file code |
660 | 660 |
|
661 | 661 |
|
662 | 662 |
|
663 | | -##Word tree charts |
| 663 | +##Word tree charts |
664 | 664 | ``` php |
665 | 665 | $cols = ['Phrases']; |
666 | 666 | $rows = [ |
|
0 commit comments