0

我在带有 GChart 的 MacBook Pro 上使用带有 GAE 的 Eclipse。我的问题是我在开发时无法显示任何图表,但是当我使用常规工具(例如带有 GAE 的按钮或标签)时,它们工作得很好。该代码没有给我任何错误,所以我假设我有正确的代码:


public class TestingTesting implements EntryPoint {
    public void onModuleLoad() {
        GChart graf = new GChart();
        graf.setTitle("testing");
        graf.setChartSize(200, 200);
        graf.addCurve();
        graf.getCurve().getSymbol().setFillThickness(2);
        for (int i = 0; i < 10; i++) 
            graf.getCurve().addPoint(i,i*i);
        Button btnOk = new Button("Ok");
        RootPanel.get("chartdiv").add(graf);
        RootPanel.get("button").add(btnOk);
    }
}

我的 TestingTesting.gwt.xml 文件如下所示:


<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='testingtesting'>
    <!-- Inherit the core Web Toolkit stuff. -->
    <inherits name='com.google.gwt.user.User' />
    <!-- Inherit the default GWT style sheet. You can change -->
    <!-- the theme of your GWT application by uncommenting -->
    <!-- any one of the following lines. -->
    <inherits name='com.google.gwt.user.theme.standard.Standard' />
    <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
    <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
    <!-- Other module inherits -->
    <inherits name='com.googlecode.gchart.GChart' />
    <!-- Specify the app entry point class. -->
    <entry-point class='test.gchart.sollution.client.TestingTesting' />
    <!-- Specify the paths for translatable code -->
    <source path='client' />
    <source path='shared' />
</module>

我的 TestingTesting.html 看起来像这样:


<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">


<title>Chart Example</title>
<script type="text/javascript" language="javascript"
    src="testingtesting/testingtesting.nocache.js"></script>
</head>

<body>
    <div id="chartdiv"></div>
    <div id="button"></div>
</body>
</html>

除此之外,我在 Eclipse 中的项目结构是

/
 - gchart.jar
 - App Engine SDK [App Engine 1.3.5]
 - GWT SDK [GWT - 2.0.4]
 - JRE 系统库
 - 源代码
 -- test.gchart.solution
 --- 测试Testing.gwt.xml
 -- test.gchart.solution.client
 --- 测试Testing.java
 -- test.gchart.solution.server
 -- test.gchart.solution.shared
 --- FieldVerifier.java
 - 元信息
 --jdoconfig.xml
 - log4j.properties
 - 战争
 -- 测试测试.html
 - 网络信息
 -- appengine-web.xml
 -- 日志记录属性
 -- web.xml
 

谁能帮我弄清楚问题可能是什么?按钮显示没有任何问题,但图表没有?

4

1 回答 1

0

我弄清楚我做错了什么。
我忘记了 TestingTesting.java 包括

RootPanel.get("chartdiv").add(graf); 
graf.update();      // you have to update your graph before it renders
于 2010-09-02T10:20:15.680 回答