<button onclick="shareAsPdf();">Get the link to PDF file</button>
<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
button {
margin: 10px 0 0 10px;
var chart;
anychart.onDocumentReady(function () {
chart = anychart.column([
{x: 'Meat', value: 10},
{x: 'Fruit', value: 12},
{x: 'Nuts', value: 18},
{x: 'Milk', value: 11},
{x: 'Fish', value: 9}
]);
chart.title('Share chart as PDF file');
chart.width('100%').height('95%');
chart.container('container');
chart.draw();
});
function shareAsPdf() {
// Share chart as PDF file.
chart.shareAsPdf(function (response) {
alert(response);