HTMLcopy
1
<button onclick="shareWithFacebook();">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.gauges.circular([{value: 7.5}]);
4
chart.axis();
5
chart.needle();
6
chart.title('Share with Facebook');
7
chart.container('container');
8
chart.draw();
9
});
10
11
function shareWithFacebook() {
12
13
// Share chart with Facebook.
14
chart.shareWithFacebook('ANYCHART.COM', 'https://www.anychart.com/', 'Circular Gauge', 'Any description');
15
}