Hi, my chart is not showing at all

[code]
<head runat="server">
    <script language="Javascript" type="text/javascript"
src="FusionCharts/FusionCharts.js"></script>
    <link rel="stylesheet" type="text/css" href="style.css" />
    <title>Indicative Finacial Viability Report</title>

     <script type="text/javascript" src="http://www.google.com/
jsapi"></script>
    <script type="text/javascript">

      // Load the Visualization API and the piechart package.
      google.load('visualization', '1', {'packages':['piechart']});

      // Set a callback to run when the Google Visualization API is
loaded.
      google.setOnLoadCallback(drawChart);

      // Callback that creates and populates a data table,
      // instantiates the pie chart, passes in the data and
      // draws it.
      function drawChart() {

      // Create our data table.
        var data = new google.visualization.DataTable();
        data.addColumn('number', 'Estimated Current Construction');
        data.addColumn('number', 'Professional Fees');
        data.addColumn('number', 'Property Value');
        data.addColumn('number', 'Local Authority Charges');
        data.addColumn('number', 'Development, Pre-Opening and
Marketing Costs');
        data.addColumn('number', 'Tenanting Cost');
        data.addColumn('number', 'Financing Cost');
        data.addColumn('number', 'Cost Of Capital');
        data.addColumn('number', 'Development Contingency');
        data.addRows([
            ['Estimated Current Construction', '<%=C177_Calc%>'];
            ['Professional Fees', '<%=C178_Calc%>'];
            ['Property Value', '<%=C179_Calc%>');
            ['Local Authority Charges', '<%=C180_Calc%>'];
            ['Development, Pre-Opening and Marketing Costs', '<
%=C181_Calc%>'];
            ['Tenanting Cost', '<%=C182_Calc%>'];
            ['Financing Cost', '<%=C183_Calc%>'];
            ['Cost Of Capital', '<%=C184_Calc%>'];
            ['Development Contingency', '<%=C185_Calc%>'];
        ]);

        // Instantiate and draw our chart, passing in some options.
        var chart = new
google.visualization.PieChart(document.getElementById('chart_div'));
        chart.draw(data, {width: 800, height: 800, is3D: true, title:
''});
      }
    </script>
</head>

<body>
<div id="chart_div"></div>
</body>
[/code]

page source in internet explorer:
<script type="text/javascript" src="http://www.google.com/jsapi";></
script>
    <script type="text/javascript">

      // Load the Visualization API and the piechart package.
      google.load('visualization', '1', {'packages':['piechart']});

      // Set a callback to run when the Google Visualization API is
loaded.
      google.setOnLoadCallback(drawChart);

      // Callback that creates and populates a data table,
      // instantiates the pie chart, passes in the data and
      // draws it.
      function drawChart() {

      // Create our data table.
        var data = new google.visualization.DataTable();
        data.addColumn('number', 'Estimated Current Construction');
        data.addColumn('number', 'Professional Fees');
        data.addColumn('number', 'Property Value');
        data.addColumn('number', 'Local Authority Charges');
        data.addColumn('number', 'Development, Pre-Opening and
Marketing Costs');
        data.addColumn('number', 'Tenanting Cost');
        data.addColumn('number', 'Financing Cost');
        data.addColumn('number', 'Cost Of Capital');
        data.addColumn('number', 'Development Contingency');
        data.addRows([
            ['Estimated Current Construction',
'4.2314284938406'.ToString()];
            ['Professional Fees', '0.550085704199277'];
            ['Property Value', '32.6395423832802');
            ['Local Authority Charges', '16.3197711916401'];
            ['Development, Pre-Opening and Marketing Costs',
'4.89593135749203'];
            ['Tenanting Cost', '29.3755881449522'];
            ['Financing Cost', '1.63197711916401'];
            ['Cost Of Capital', '6.5095217592778'];
            ['Development Contingency', '3.84615384615385'];
        ]);

        // Instantiate and draw our chart, passing in some options.
        var chart = new
google.visualization.PieChart(document.getElementById('chart_div'));
        chart.draw(data, {width: 800, height: 800, is3D: true, title:
''});
      }
    </script>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to