Я нахожу свою голову на стене с этим.Как добавить диаграммы Google, используя ралли SDK2.1
APP SDK 2.0: Charts in the short term?
Я последовал выше пост, чтобы добавить Google диаграммы, чтобы сплотить отчет, но столкнулся с проблемой. Я ожидал ответа от mattparrish в этом сообщении для работы. но он бросает следующее сообщение об ошибке:
sdk-debug.js:147611 Error: success callback for Deferred transformed result of Deferred transformed result of Deferred threw: TypeError: Cannot read property 'dom' of undefined
at constructor._drawChart (App.js?_dc=0.8649522877525893:36)
at constructor.launch (App.js?_dc=0.8649522877525893:30)
at constructor._applyDefaultSettingsAndLaunch (sdk-debug.js:155148)
at constructor.loadSettingsAndLaunch (sdk-debug.js:155054)
at constructor.initComponent (sdk-debug.js:155032)
at constructor (sdk-debug.js:30211)
at constructor.callParent (sdk-debug.js:4469)
at constructor [as _componentConstructor] (sdk-debug.js:34291)
at constructor.callParent (sdk-debug.js:4469)
at constructor (sdk-debug.js:144823)
Это, как я добавление Google JSAPI сплотиться отчета:
<!DOCTYPE html>
<html>
<head>
<title>ExtPlusGoogleCharts</title>
<script type="text/javascript" src="https://rally1.rallydev.com/apps/2.1/sdk-debug.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1.0", {packages:["corechart"]});
google.setOnLoadCallback(Rally.loadScripts(
[
"App.js",
],
function() {
Rally.launchApp('CustomApp', {
name:"ExtPlusGoogleCharts"
});
}, true));
</script>
<link rel="stylesheet" type="text/css" href="app.css"/>
</head>
<body>
</body>
</html>
Можно ли добавить Google диаграммы в ралли SDK2.1? Если да, то как? Благодаря!
Я использую ur awesome highcharts, но я просто любопытный. Я новичок в SDK Sencha, поэтому я пытаюсь это понять. – hariszhr