GChart на GAE не будет показывать - PullRequest
0 голосов
/ 30 августа 2010

Я использую Eclipse с GAE на MacBook Pro с GChart. Моя проблема в том, что я не могу отобразить график при разработке, но когда я использую обычные инструменты, такие как кнопки или надписи, с 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 System Library
 - src
 -- test.gchart.sollution
 --- TestingTesting.gwt.xml
 -- test.gchart.sollution.client
 --- TestingTesting.java
 -- test.gchart.sollution.server
 -- test.gchart.sollution.shared
 --- FieldVerifier.java 
 - META-INF
 -- jdoconfig.xml
 - log4j.properties
 - war
 -- TestTest.html
 - WEB-INF
 -- appengine-web.xml
 -- logging.properties
 -- web.xml
 

Может кто-нибудь помочь мне выяснить, в чем может быть проблема? Кнопка отображается без проблем, а график - нет?

1 Ответ

0 голосов
/ 02 сентября 2010

Я понял, что сделал неправильно.Я забыл на TestingTesting.java, чтобы включить

RootPanel.get("chartdiv").add(graf); 
graf.update();      // you have to update your graph before it renders
...