Sencha Touch Charts 1 は Sencha Touch 2 と互換性がありますか?
例えば
私はこれを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();
}
});
サークルをくれるかもしれません。
代わりに、339 行目で、存在しないtouch-charts-debug.js
ことを示す例外が発生します。Ext.util.Observable
これは、Charts 1 が Touch 2 と互換性がないということですか?