HTMLcopy
1
<button onclick="shareWithTwitter();">Get the sharing dialog</button>
2
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
var chart;
2
anychart.onDocumentReady(function () {
3
chart = anychart.scatter();
4
chart.line([
5
{x: 1, value: 0},
6
{x: 2, value: 20},
7
{x: 3, value: 10},
8
{x: 4, value: 30},
9
{x: 5, value: 20},
10
{x: 6, value: 40},
11
{x: 7, value: 30},
12
{x: 8, value: 50},
13
{x: 9, value: 40},
14
{x: 1, value: 0}
15
]);
16
chart.xGrid(true).yGrid(true);
17
chart.title('Share with Twitter');
18
chart.container('container');
19
chart.draw();
20
});
21
22
function shareWithTwitter() {
23
24
// Share chart with Twitter
25
chart.shareWithTwitter();
26
}