anychart.onDocumentReady(function () {
{x: "2000", value: 1100, size: 3},
{x: "2001", value: 880, size: 4},
{x: "2002", value: 1100, size: 4},
{x: "2003", value: 1300, size: 5,
{x: "2004", value: 921, size: 4.5},
{x: "2005", value: 1000, size: 3},
{x: "2006", value: 1400, size: 4}
var chart = anychart.cartesian();
chart.interactivity().hoverMode("by-x");
series = chart.bubble(data);
chart.title("Bubble Chart: Appearance (Individual Points)");
chart.xAxis().title("Year");
chart.yAxis().title("Sales, $");
chart.container("container");