I'm trying to get this mootools bubble chart demo (http://moochart.coneri.se/) to work in my code but am having a bit of difficulty. Can anyone help with this? Here is the code that I have (I think it's what the documentation is saying, but please correct me if I'm wrong).
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MootoolsChart.aspx.cs" Inherits="BubbleChart.MootoolsChart" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="http://moochart.coneri.se/dl1/moochart-0.1b1.js"></script>
<script type="text/javascript" src="http://moochart.coneri.se/dl1/moochart-0.1b1-nc.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/mootools/1.2.4/mootools.js"></script>
<script type ="text/javascript">
var myChart = new Chart.Bubble('myChart',{
width: 300,
height: 200,
bubbleSize: 20
});
myChart.addBubble(10, 20, 30, '#fff', 'Bubble 1');
myChart.addBubble(0, 40, 20, '#000', 'Bubble 2');
myChart.redraw();
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="myChart"></div>
</div>
</form>
</body>
</html>