Sencha Touch Charts 1和Sencha Touch 2不兼容吗?

时间:2012-03-07 13:40:11

标签: sencha-touch-2 sencha-charts

Sencha Touch Charts 1与Sencha Touch 2兼容吗?

e.g。

我希望这是一个html(其中../touch是Sencha 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();
    }
});

可能会给我一个圆圈。

相反,我在touch-charts-debug.js的第339行收到异常,表示Ext.util.Observable不存在。

这是否意味着图表1与Touch 2不兼容?

3 个答案:

答案 0 :(得分:1)

不,他们不兼容。

Sencha表示,Sencha Touch 2图表的测试版将在几周内发布。

答案 1 :(得分:1)

答案 2 :(得分: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

希望它可以帮到你