anychart.onDocumentReady(function () {
{x: "2020-01-12", value: "6"},
{x: "2020-01-15", value: "2"},
{x: "2020-01-18", value: "2"},
{x: "2020-01-19", value: "5"},
{x: "2020-02-03", value: "1"},
{x: "2020-02-19", value: "9"},
{x: "2020-03-19", value: "2"},
{x: "2020-04-13", value: "3"},
{x: "2020-04-15", value: "3"},
{x: "2020-04-20", value: "4"},
{x: "2020-04-21", value: "1"},
{x: "2020-05-10", value: "3"},
{x: "2020-05-11", value: "1"},
{x: "2020-05-14", value: "1"},
{x: "2021-01-12", value: "2"}
var chart = anychart.calendar(data);
years.background("#e7f3fd");
years.title().fontColor("#dd2c00");
years.title().fontSize(30);
years.title().fontWeight(600);
chart.years().title().fontSize(30);
chart.title().useHtml(true);
chart.listen("chartDraw", function () {
chart.title("Calendar Chart: Years (Inverted = " + years.inverted() +
")<br><br><span style='font-size:12; font-style:italic'>" +
"GitHub Contributions</span>");
chart.container("container");
function yearsInverted(inverted) {
years.inverted(inverted);