0

Sencha Touch Charts 1 は Sencha Touch 2 と互換性がありますか?

例えば

私はこれをhtmlで望んでいました(../touchSencha Touch 2リリースはどこですか):

<title>Simple Animation with Sprites</title>
<script type="text/javascript" src="../touch-charts/sencha-touch-debug.js"></script>
<script type="text/javascript" src="../touch-charts/touch-charts-debug.js"></script>
<script type="text/javascript" src="app.js"></script>

そしてapp.js含む:

Ext.application({
    name: 'Animation',
    requires: [
        'Ext.draw.Component'
    ],
    launch: function() {
        var titleVisible = false;

        var drawComponent = new Ext.draw.Component({
            items: [{
                type: 'circle',
                fill: '#EECC00',
                radius: 100,
                x: 200,
                y: 200
            }]
        });

        Ext.Viewport.add({
            xtype: 'panel',
            id: 'panel-container',
            fullscreen: true,
            layout: fit,
            items: [drawComponent]

        });

        drawComponent.surface.renderFrame();
    }
});

サークルをくれるかもしれません。

代わりに、339 行目で、存在しないtouch-charts-debug.jsことを示す例外が発生します。Ext.util.Observable

これは、Charts 1 が Touch 2 と互換性がないということですか?

4

3 に答える 3

1

発表されたばかり:

http://notes.sencha.com/post/18941258668/sencha-touch-charts-2-beta-is-now-available-for

于 2012-03-08T12:05:01.830 に答える
1

いいえ、互換性がありません。

Sencha は、Sencha Touch 2 チャートのベータ版が数週間以内に利用可能になると述べています。

于 2012-03-07T21:36:21.963 に答える
0

チャートをサポートする Sencha Touch 2.1 Beta が利用可能になりました

リンクは次のとおりです: http://dev.sencha.com/deploy/sencha-touch-2.1.0-b2.zip

リリースノート: http://dev.sencha.com/deploy/sencha-touch-2.1.0-b2/release-notes.html

それがあなたを助けることを願っています

于 2012-09-09T09:50:43.983 に答える