anychart.onDocumentReady(function () {
{x: "learning", value: 80},
{x: "includes", value: 56},
{x: "meaning", value: 40},
{x: "useful", value: 36},
{x: "different", value: 32},
{x: "grammar", value: 28},
{x: "teaching", value: 24},
{x: "example", value: 20},
var chart = anychart.tagCloud(data);
chart.title("Tag Cloud Chart: Appearance");
chart.normal().fill("#1fadad");
chart.hovered().fill("#93bfec");
chart.selected().fill("#1f66ad");
chart.normal().stroke("#0f5757");
chart.hovered().stroke("#0f3357");
chart.selected().stroke("#0f3357");
chart.normal().fontWeight(600);
chart.container("container");