Last active
July 28, 2016 01:54
-
-
Save ashgadala/e0640c20d3be30e000274869c99a3370 to your computer and use it in GitHub Desktop.
Exporting multiple charts on the page to a single PDF
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://www.amcharts.com/lib/3/amcharts.js"></script> | |
| <script src="https://www.amcharts.com/lib/3/serial.js"></script> | |
| <script src="https://www.amcharts.com/lib/3/themes/light.js"></script> | |
| <script src="https://www.amcharts.com/lib/3/plugins/export/export.js"></script> | |
| <input type="button" value="Export charts to PDF" onclick="exportCharts();" /> | |
| <div id="chart1" class="chartdiv"></div> | |
| <div><h1>Test</h1> | |
| <p>Lrem IPSUM</p> | |
| </div> | |
| <div id="chart2" class="chartdiv"></div> | |
| <div><h1>Test</h1> | |
| <p>Lrem IPSUM</p> | |
| </div> | |
| <div id="chart3" class="chartdiv"></div> | |
| <div><h1>Test</h1> | |
| <p>Lrem IPSUM</p> | |
| </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
| /** | |
| * First chart | |
| */ | |
| AmCharts.makeChart( "chart1", { | |
| "type": "serial", | |
| "theme": "light", | |
| "autoMargins": false, | |
| "marginLeft": 50, | |
| "marginRight": 8, | |
| "marginTop": 30, | |
| "marginBottom": 26, | |
| "dataProvider": [ { | |
| "country": "USA", | |
| "visits": 2025 | |
| }, { | |
| "country": "China", | |
| "visits": 1882 | |
| }, { | |
| "country": "Japan", | |
| "visits": 1809 | |
| }, { | |
| "country": "Germany", | |
| "visits": 1322 | |
| }, { | |
| "country": "UK", | |
| "visits": 1122 | |
| }, { | |
| "country": "France", | |
| "visits": 1114 | |
| }, { | |
| "country": "India", | |
| "visits": 984 | |
| }, { | |
| "country": "Spain", | |
| "visits": 711 | |
| } ], | |
| "valueAxes": [ { | |
| "gridColor": "#FFFFFF", | |
| "gridAlpha": 0.2, | |
| "dashLength": 0 | |
| } ], | |
| "startDuration": 1, | |
| "graphs": [ { | |
| "balloonText": "[[category]]: <b>[[value]]</b>", | |
| "fillAlphas": 0.8, | |
| "lineAlpha": 0.2, | |
| "type": "column", | |
| "valueField": "visits" | |
| } ], | |
| "chartCursor": { | |
| "categoryBalloonEnabled": false, | |
| "cursorAlpha": 0, | |
| "zoomable": false | |
| }, | |
| "categoryField": "country", | |
| "categoryAxis": { | |
| "gridPosition": "start", | |
| "gridAlpha": 0, | |
| "tickPosition": "start", | |
| "tickLength": 20 | |
| }, | |
| "export": { | |
| "enabled": true, | |
| "menu": [] | |
| } | |
| } ); | |
| /** | |
| * Second chart | |
| */ | |
| AmCharts.makeChart( "chart2", { | |
| "type": "serial", | |
| "addClassNames": true, | |
| "theme": "light", | |
| "autoMargins": false, | |
| "marginLeft": 50, | |
| "marginRight": 8, | |
| "marginTop": 30, | |
| "marginBottom": 26, | |
| "balloon": { | |
| "adjustBorderColor": false, | |
| "horizontalPadding": 10, | |
| "verticalPadding": 8, | |
| "color": "#ffffff" | |
| }, | |
| "dataProvider": [ { | |
| "year": 2009, | |
| "income": 23.5, | |
| "expenses": 21.1 | |
| }, { | |
| "year": 2010, | |
| "income": 26.2, | |
| "expenses": 30.5 | |
| }, { | |
| "year": 2011, | |
| "income": 30.1, | |
| "expenses": 34.9 | |
| }, { | |
| "year": 2012, | |
| "income": 29.5, | |
| "expenses": 31.1 | |
| }, { | |
| "year": 2013, | |
| "income": 30.6, | |
| "expenses": 28.2, | |
| }, { | |
| "year": 2014, | |
| "income": 34.1, | |
| "expenses": 32.9, | |
| "dashLengthColumn": 5, | |
| "alpha": 0.2, | |
| "additional": "(projection)" | |
| } ], | |
| "valueAxes": [ { | |
| "gridColor": "#FFFFFF", | |
| "gridAlpha": 0.2, | |
| "dashLength": 0 | |
| } ], | |
| "startDuration": 1, | |
| "graphs": [ { | |
| "alphaField": "alpha", | |
| "balloonText": "<span style='font-size:12px;'>[[title]] in [[category]]:<br><span style='font-size:20px;'>[[value]]</span> [[additional]]</span>", | |
| "fillAlphas": 1, | |
| "title": "Income", | |
| "type": "column", | |
| "valueField": "income", | |
| "dashLengthField": "dashLengthColumn" | |
| }, { | |
| "id": "graph2", | |
| "balloonText": "<span style='font-size:12px;'>[[title]] in [[category]]:<br><span style='font-size:20px;'>[[value]]</span> [[additional]]</span>", | |
| "bullet": "round", | |
| "lineThickness": 3, | |
| "bulletSize": 7, | |
| "bulletBorderAlpha": 1, | |
| "bulletColor": "#FFFFFF", | |
| "useLineColorForBulletBorder": true, | |
| "bulletBorderThickness": 3, | |
| "fillAlphas": 0, | |
| "lineAlpha": 1, | |
| "title": "Expenses", | |
| "valueField": "expenses" | |
| } ], | |
| "categoryField": "year", | |
| "categoryAxis": { | |
| "gridPosition": "start", | |
| "gridAlpha": 0, | |
| "tickPosition": "start", | |
| "tickLength": 20 | |
| }, | |
| "export": { | |
| "enabled": true, | |
| "menu": [] | |
| } | |
| } ); | |
| /** | |
| * Third chart | |
| */ | |
| AmCharts.makeChart( "chart3", { | |
| "type": "serial", | |
| "theme": "light", | |
| "autoMargins": false, | |
| "marginLeft": 50, | |
| "marginRight": 8, | |
| "marginTop": 30, | |
| "marginBottom": 26, | |
| "dataProvider": [ { | |
| "date": "2012-03-01", | |
| "price": 20 | |
| }, { | |
| "date": "2012-03-02", | |
| "price": 75 | |
| }, { | |
| "date": "2012-03-03", | |
| "price": 15 | |
| }, { | |
| "date": "2012-03-04", | |
| "price": 75 | |
| }, { | |
| "date": "2012-03-05", | |
| "price": 158 | |
| }, { | |
| "date": "2012-03-06", | |
| "price": 57 | |
| }, { | |
| "date": "2012-03-07", | |
| "price": 107 | |
| }, { | |
| "date": "2012-03-08", | |
| "price": 89 | |
| }, { | |
| "date": "2012-03-09", | |
| "price": 75 | |
| }, { | |
| "date": "2012-03-10", | |
| "price": 132 | |
| }, { | |
| "date": "2012-03-11", | |
| "price": 158 | |
| }, { | |
| "date": "2012-03-12", | |
| "price": 56 | |
| }, { | |
| "date": "2012-03-13", | |
| "price": 169 | |
| }, { | |
| "date": "2012-03-14", | |
| "price": 24 | |
| }, { | |
| "date": "2012-03-15", | |
| "price": 147 | |
| } ], | |
| "valueAxes": [ { | |
| "logarithmic": true, | |
| "dashLength": 1, | |
| "guides": [ { | |
| "dashLength": 6, | |
| "inside": true, | |
| "label": "average", | |
| "lineAlpha": 1, | |
| "value": 90.4 | |
| } ], | |
| "position": "left" | |
| } ], | |
| "graphs": [ { | |
| "bullet": "round", | |
| "id": "g1", | |
| "bulletBorderAlpha": 1, | |
| "bulletColor": "#FFFFFF", | |
| "bulletSize": 7, | |
| "lineThickness": 2, | |
| "title": "Price", | |
| "type": "smoothedLine", | |
| "useLineColorForBulletBorder": true, | |
| "valueField": "price" | |
| } ], | |
| "chartCursor": { | |
| "valueLineEnabled": true, | |
| "valueLineBalloonEnabled": true, | |
| "valueLineAlpha": 0.5, | |
| "fullWidth": true, | |
| "cursorAlpha": 0.05 | |
| }, | |
| "dataDateFormat": "YYYY-MM-DD", | |
| "categoryField": "date", | |
| "categoryAxis": { | |
| "parseDates": true, | |
| "gridPosition": "start", | |
| "gridAlpha": 0, | |
| "tickPosition": "start", | |
| "tickLength": 20 | |
| }, | |
| "export": { | |
| "enabled": true, | |
| "menu": [] | |
| } | |
| } ); | |
| /** | |
| * Function that triggers export of all charts to PDF | |
| */ | |
| function exportCharts() { | |
| // iterate through all of the charts and prepare their images for export | |
| var images = []; | |
| var pending = AmCharts.charts.length; | |
| for ( var i = 0; i < AmCharts.charts.length; i++ ) { | |
| var chart = AmCharts.charts[ i ]; | |
| chart.export.capture( {}, function() { | |
| this.toJPG( {}, function( data ) { | |
| images.push( { | |
| "image": data, | |
| "fit": [ 523.28, 769.89 ] | |
| } ); | |
| pending--; | |
| if ( pending === 0 ) { | |
| // all done - construct PDF | |
| chart.export.toPDF( { | |
| content: images | |
| }, function( data ) { | |
| this.download( data, "application/pdf", "amCharts.pdf" ); | |
| } ); | |
| } | |
| } ); | |
| } ); | |
| } | |
| } |
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.jquery.com/jquery-1.11.2.min.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
| .chartdiv { | |
| width: 800px; | |
| height: 220px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment