Created
February 8, 2018 12:11
-
-
Save samarthagarwal/5183f2b92b30e72541ee3a3aed50e473 to your computer and use it in GitHub Desktop.
ACWA-03
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myChart = Highcharts.chart('container', { | |
| chart: { | |
| type: 'bar' | |
| }, | |
| title: { | |
| text: 'Fruit Consumption' | |
| }, | |
| xAxis: { | |
| categories: ['Apples', 'Bananas', 'Oranges'] | |
| }, | |
| yAxis: { | |
| title: { | |
| text: 'Fruit eaten' | |
| } | |
| }, | |
| series: [{ | |
| name: 'Jane', | |
| data: [1, 0, 4] | |
| }, { | |
| name: 'John', | |
| data: [5, 7, 3] | |
| }] | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment