anychart.onDocumentReady(function () {
var chart = anychart.cartesian();
{x: 2000, value: 1100, size: 3},
{x: 2001, value: 800, size: 3},
{x: 2002, value: 1100, size: 3},
{x: 2003, value: 1500, size: 2},
{x: 2004, value: 921, size: 4},
{x: 2005, value: 1000, size: 3},
{x: 2006, value: 1400, size: 2}
{x: 2000, value: 900, size: 1},
{x: 2001, value: 950, size: 4},
{x: 2002, value: 800, size: 2},
{x: 2003, value: 1000, size: 3},
{x: 2004, value: 800, size: 3},
{x: 2005, value: 750, size: 1},
{x: 2006, value: 800, size: 2}
series1 = chart.bubble(data1);
series2 = chart.bubble(data2);
chart.minBubbleSize("3%");
chart.maxBubbleSize("10%");
chart.title("Bubble Chart: Size (Percent)");
chart.interactivity({hoverMode: "by-x"});
chart.xAxis().title("Year");
chart.yAxis().title("Sales, $");
chart.container("container");