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
| <script src="https://code.highcharts.com/highcharts.js"></script> | |
| <div id="container" style="display: block;"></div> |
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
| <script src="https://code.highcharts.com/highcharts.js"></script> |
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
| <script src="https://code.highcharts.com/highcharts.js"></script> | |
| <div id="container" style="display: block;"></div> |
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 dataset1 = []; | |
| var dataset2 = []; | |
| for (var i = 0; i < 16; i++) { | |
| dataset1.push(Math.floor(Math.random() * 10 + 1)); | |
| dataset2.push(Math.floor(Math.random() * 10 + 1)); | |
| } | |
| var myChart = Highcharts.chart("container", { | |
| chart: { |
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 colors = Highcharts.getOptions().colors; | |
| // Create the chart | |
| Highcharts.chart("container", { | |
| chart: { | |
| type: "pie" | |
| }, | |
| title: { | |
| text: "Browser market share, January, 2017 to December, 2017" | |
| }, | |
| subtitle: { |
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
| Highcharts.chart('container', { | |
| chart: { | |
| type: 'pie' | |
| }, | |
| title: { | |
| text: 'Browser market shares January, 2017 to Decmber, 2017' | |
| }, | |
| tooltip: { | |
| pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' | |
| }, |
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'] | |
| }, |
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
| Files changed (41) | |
| +5 -0 M README.md | |
| +7 -0 M changeLog.md | |
| +11 -11 M config.xml | |
| +88 -53 M package.json | |
| +0 -0 M resources/android/icon/drawable-hdpi-icon.png | |
| +0 -0 M resources/android/icon/drawable-ldpi-icon.png | |
| +0 -0 M resources/android/icon/drawable-mdpi-icon.png | |
| +0 -0 M resources/android/icon/drawable-xhdpi-icon.png | |
| +0 -0 M resources/android/icon/drawable-xxhdpi-icon.png |
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
| # | |
| # This is the main Apache HTTP server configuration file. It contains the | |
| # configuration directives that give the server its instructions. | |
| # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. | |
| # In particular, see | |
| # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> | |
| # for a discussion of each configuration directive. | |
| # | |
| # Do NOT simply read the instructions in here without understanding | |
| # what they do. They're here only as hints or reminders. If you are unsure |
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
| Files changed (27) | |
| +5 -0 M README.md | |
| +7 -0 M changeLog.md | |
| +58 -57 M config.xml | |
| +42 -0 A google-services.json | |
| +4 -1 M ionic.config.json | |
| +3 -3 M package.json | |
| +6 -2 M src/app/app.module.ts | |
| +1 -1 M src/directives/parallex/parallex.ts | |
| +115 -0 A src/pages/account/account.html |