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.twitter(
"https://export.anychart.stg/sharing/twitter",
var customLabel = anychart.standalones.label();
customLabel.background({fill: "#9E9E9E"});
customLabel.text("Share with Twitter");
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.shareWithTwitter();
customLabel.container(stage);