Совместимы ли 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
не существует.
Означает ли это, что Графики 1 не совместимы с Touch 2?