anychart.onDocumentReady(function () {
{x: "learning", value: 80},
{x: "meaning", value: 40},
{x: "useful", value: 36},
{x: "different", value: 32},
{x: "grammar", value: 28},
{x: "teaching", value: 24},
{x: "example", value: 20},
{x: "includes", value: 56},
{x: "vocabulary", value: 10},
{x: "frequency", value: 10},
{x: "phrases", value: 15},
{x: "content", value: 27}
var chart = anychart.tagCloud(data);
var hoveredState = chart.hovered();
hoveredState.fill('#80DEEA');
hoveredState.stroke('#5A9BA4');
chart.title('Get and modify hovered state');
chart.container('container');
chart.hover([0, 2, 4, 6]);