HTMLcopy
1
<button onclick="shareWithLinkedIn();">Get the sharing dialog</button>
2
<div id="container"></div>
CSScopy
9
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
7
button {
8
margin: 10px 0 0 10px;
9
}
JavaScriptcopy
x
1
var chart;
2
anychart.onDocumentReady(function () {
3
chart = anychart.line([
4
{x: 'January', value: 2},
5
{x: 'February', value: 5},
6
{x: 'March', value: 3},
7
{x: 'April', value: 9},
8
{x: 'May', value: 4}
9
]);
10
11
chart.title('Share with LinkedIn');
12
chart.width('100%').height('95%');
13
chart.container('container');
14
chart.draw();
15
});
16
17
function shareWithLinkedIn() {
18
19
// Share chart with LinkedIn.
20
chart.shareWithLinkedIn('ANYCHART.COM', 'Line chart');
21
}