anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var chart = anychart.line([6, 48, 6, 44, 8, 29, 9, 23, 9, 17]);
chart.title("Set facebook sharing settings");
anychart.exports.linkedin(
"Statistics of visits to the site",
var customLabel = anychart.standalones.label();
customLabel.background({fill: "#9E9E9E"});
customLabel.text("Share with LinkedIn");
customLabel.fontColor("#fff");
customLabel.listen("mouseOver", function () {
document.body.style.cursor = "pointer";
customLabel.listen("mouseOut", function () {
document.body.style.cursor = "auto";
customLabel.listen("click", function () {
chart.shareWithLinkedIn();
customLabel.container(stage);