在 SenchaTouch 中使用图表

发布于 2024-11-10 00:48:54 字数 111 浏览 0 评论 0原文

我开始使用 SenchaTouch 并且喜欢它;我真的很希望能够在 SenchaTouch 应用程序中显示交互式图表(例如向下钻取:当用户点击图表栏时,捕获事件并显示另一个图表)。

这可能吗?

I'm starting to use SenchaTouch and I like it; I would really like to be able to show interactive charts (e.g. drill-down: when the user taps a chart bar, trap the event and show another chart) in SenchaTouch apps.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

感性 2024-11-17 00:48:55

正如您已经确定的那样,Sencha Touch 是面向移动设备的,因此如果您在 iPhone / iPad 移动应用程序中使用 Flash,它将无法工作。
因此,我强烈建议您使用 Raphaël javascript Charts
Sencha 团队已经在新的 Ext 4 版本中使用它,我很高兴它甚至会在下一个 Sencha Touch 版本中正式使用。

我向您发布了一个简单的示例,向您展示如何在面板主体内初始化拉斐尔图表:

var myPanel = new Ext.Panel({
fullscreen: true,
html: 'The tabs above are also sortable.<br />(tap and hold)<br/>' +
    '<div id="raphaelChart"></div>',
listeners: {
    afterrender: function(){
        //Let's create the Raphael chart
        var set = Raphael(['raphaelChart', 320, 200, {
            type: "rect",
            x: 10,
            y: 10,
            width: 25,
            height: 25,
            stroke: "#f00"
        },{
            type: "text",
            x: 70,
            y: 50,
            text: "This is a Raphael Example"
        }]);
    }
}

});

希望这有帮助。

As you already know for sure, Sencha Touch is mobile device oriented, so if you use Flash inside you iPhone / iPad mobile application it does not works.
So, I really suggest you to use Raphaël javascript Charts.
Sencha Team already use it for the new Ext 4 release and I'm pretty use it will be even used officially on the next Sencha Touch release.

I post you a simple exampe that show you how to initialize a Raphael Chart inside a Panel body:

var myPanel = new Ext.Panel({
fullscreen: true,
html: 'The tabs above are also sortable.<br />(tap and hold)<br/>' +
    '<div id="raphaelChart"></div>',
listeners: {
    afterrender: function(){
        //Let's create the Raphael chart
        var set = Raphael(['raphaelChart', 320, 200, {
            type: "rect",
            x: 10,
            y: 10,
            width: 25,
            height: 25,
            stroke: "#f00"
        },{
            type: "text",
            x: 70,
            y: 50,
            text: "This is a Raphael Example"
        }]);
    }
}

});

Hope this helps.

迷爱 2024-11-17 00:48:55

您可以尝试使用 Open flash Chart http://teethgrinder.co.uk/open-flash -chart-2/

这些非常易于使用和交互。

you can try the Open flash Chart http://teethgrinder.co.uk/open-flash-chart-2/

these are very easy to use and interactive.

罪歌 2024-11-17 00:48:55

试试这个:

http://code.google.com/p/oppo-touching/

这使得 Ext JS 4 中的图表可用于 Sencha Touch!

try this:

http://code.google.com/p/oppo-touching/

this is making the charts in Ext JS 4 available for Sencha Touch!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文