<button onclick="shareWithLinkedIn();">Get the sharing dialog</button>
<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
var chart;
anychart.onDocumentReady(function () {
chart = anychart.column3d([
{x: 'Meat', value: 10},
{x: 'Fruit', value: 12},
{x: 'Nuts', value: 18},
{x: 'Milk', value: 11},
{x: 'Fish', value: 5}
]);
chart.title('Share with LinkedIn');
chart.container('container');
chart.draw();
});
function shareWithLinkedIn() {
// Share chart with LinkedIn.
chart.shareWithLinkedIn('ANYCHART.COM', 'Column 3D chart');