index.html 782 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Google Charts</title>
  5. <script src="../../js/amber.js" type="text/javascript"></script>
  6. <script type="text/javascript">
  7. loadAmber({
  8. files: ['GoogleCharts.js','GoogleChartsExamples'],
  9. prefix: 'examples/googlecharts/js', // path for js files i think
  10. ready: function() {
  11. $(function() {
  12. smalltalk.IndexChartApp._new(); // Start the smalltalk App
  13. });
  14. }});
  15. </script>
  16. </head>
  17. <body>
  18. <h1>Google Charts</h1>
  19. <button onclick="smalltalk.Browser._open()">class browser</button>
  20. <div id="pie_chart_div" style="width: 900px;height: 500px;">Loading Google Chart..</div>
  21. <a href="popcharts.html">Try the Pop Charts!</a> example.
  22. </body>
  23. </html>