Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i try to add grahael pie chart in my web site using same code from graphael site

gRaphaƫl Static Pie Chart

    <script src="http://raphaeljs.com/raphael.js" type="text/javascript" charset="utf-8"></script>
    <script src="g.raphael.js" type="text/javascript" charset="utf-8"></script>
    <script src="g.pie.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" charset="utf-8">
        window.onload = function () {
            var r = Raphael("holder");
            r.g.txtattr.font = "12px 'Fontin Sans', Fontin-Sans, sans-serif";

            r.g.text(320, 70, "Static Pie Chart").attr({"font-size": 20});

            r.g.piechart(320, 240, 150, [55, 20, 13, 32, 5, 1, 2, 10]);
        };
    </script>
</head>
<body class="raphael" id="g.raphael.dmitry.baranovskiy.com">
    <div id="holder"></div>

    <p>
        Demo of <a href="http://g.raphaeljs.com/">gRaphaƫl</a> JavaScript library.
    </p>
</body>

But im not getting the chart and on firebug im getting error like Raphael not defined ?

share|improve this question
Any Suggestion ? i really cant find any solutions ? – kiran Apr 14 '11 at 5:35

1 Answer

<script src="http://raphaeljs.com/raphael.js" type="text/javascript" charset="utf-8"></script>
<script src="g.raphael.js" type="text/javascript" charset="utf-8"></script>
<script src="g.pie.js" type="text/javascript" charset="utf-8"></script>

You are loading one script from a remote site and the others locally. Are you sure you actually have g.raphael.js and g.pie.js in the same folder as your html file?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.