anychart.onDocumentReady(function () {
var chart = anychart.column([
chart.title("Click to Share with Custom Defaults");
anychart.exports.facebook({caption: "A sample shared with Facebook", link: "https://anychart.com", height: "600", appID: "1167712323282103"});
anychart.exports.twitter("https://export.anychart.com/sharing/twitter", "800", "600");
anychart.exports.linkedin("AnyChart Area Chart sample shared with LinkedIn", undefined, undefined, "400");
anychart.exports.pinterest("https://anychart.com", undefined, "800", undefined);
chart.listen("pointClick", function(e){
switch (e.point.get("x")) {
chart.shareWithFacebook();
chart.shareWithTwitter();
chart.shareWithLinkedIn();
chart.shareWithPinterest();
chart.container("container");