anychart.onDocumentReady(function() {
var dataSet = anychart.data.set([
{x: "Facebook", value: 103.42, yoy: 27},
{x: "Google Search", value: 75.98, yoy: 37},
{x: "Google Play", value: 73.67, yoy: 28},
{x: "YouTube", value: 71.96, yoy: 27},
{x: "Google Maps", value: 68.58, yoy: 14},
{x: "Gmail", value: 64.41, yoy: 29},
{x: "Instagram", value: 31.99, yoy: 66},
{x: "Maps (Apple)", value: 31.89, yoy: 64},
{x: "Stocks", value: 30.78, yoy: 32},
{x: "Twitter", value: 30.76, yoy: 36}
var chart = anychart.column();
chart.title().enabled(true).useHtml(true).text("Hover point to get information on <br> one of top 10 Smartphone<br> Applications of 2013").hAlign("center");
chart.xAxis().title().enabled(false);
chart.xAxis().staggerMode(2);
var column = chart.column(dataSet);
var view = dataSet.mapAs();
anychart.enums.EventType.POINT_MOUSE_OVER,
var infoGetter = "Application Name:<b>" +
view.get(e.pointIndex, "x") +
"</b><br/><a style='color: red;'>Average</a> Unique Users: <b>" +
view.get(e.pointIndex, "value") +
"</b> millions<br/>Year Over Year: <b>" +
view.get(e.pointIndex, "yoy") + "%</b>" ;
chart.title().text(infoGetter).fontWeight(300);
anychart.enums.EventType.POINT_MOUSE_OUT,
chart.title().fontWeight(900).text("Hover point to get information on <br> one of top 10 Smartphone<br> Applications of 2013");
chart.container("container").draw();