0
J'essaye d'obtenir cette démo de diagramme de bulle de mootools (http://moochart.coneri.se/) pour travailler dans mon code mais ai un peu de difficulté. Quelqu'un peut-il aider avec ceci? Voici le code que j'ai (je pense que c'est ce que dit la documentation, mais corrigez-moi si je me trompe).mootools bubble chart
<%@ 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>