1

已编辑 我正在使用为柱形图提供的 Sencha 触摸图表示例。代码如下

new Ext.chart.Panel({
    fullscreen: true,
    title: 'Column Chart',
    dockedItems: [{
        xtype: 'button',
            iconCls: 'help',
            iconMask: true,
            ui: 'plain',
            handler: onHelpTap
        }, {
            xtype: 'button',
            iconCls: 'shuffle',
            iconMask: true,
            ui: 'plain',
            handler: onRefreshTap
        }],
        items: {
            cls: 'column1',
            animate: {
                easing: 'bounceOut',
                duration: 750
            },
            store: window.store1,
            shadow: false,
            gradients: [{
                'id': 'v-1',
                'angle': 0,
                stops: {
                    0: {
                        color: 'rgb(212, 40, 40)'
                    },
                    100: {
                        color: 'rgb(117, 14, 14)'
                    }
                }
            },
            {
                'id': 'v-2',
                'angle': 0,
                stops: {
                    0: {
                        color: 'rgb(180, 216, 42)'
                    },
                    100: {
                        color: 'rgb(94, 114, 13)'
                    }
                }
            },
            {
                'id': 'v-3',
                'angle': 0,
                stops: {
                    0: {
                        color: 'rgb(43, 221, 115)'
                    },
                    100: {
                        color: 'rgb(14, 117, 56)'
                    }
                }
            },
            {
                'id': 'v-4',
                'angle': 0,
                stops: {
                    0: {
                        color: 'rgb(45, 117, 226)'
                    },
                    100: {
                        color: 'rgb(14, 56, 117)'
                    }
                }
            },
            {
                'id': 'v-5',
                'angle': 0,
                stops: {
                    0: {
                        color: 'rgb(187, 45, 222)'
                    },
                    100: {
                        color: 'rgb(85, 10, 103)'
                    }
                }
            }],
            axes: [{
                type: 'Numeric',
                position: 'left',
                fields: ['wins'],
                minimum: 0,
                maximum: 10,
                label: {
                    renderer: function (v) {
                        return v.toFixed(0);
                    }
                },
                title: 'Wins'
            },
            {
                type: 'Category',
                position: 'bottom',
                fields: ['School'],
                title: 'School'
            }],
            series: [{
                type: 'column',
                axis: 'left',
                highlight: true,
                renderer: function (sprite, storeItem, barAttr, i, store) {
                    barAttr.fill = colors[i % colors.length];
                    return barAttr;
                },
                label: {
                    field: 'wins'
                },
                xField: 'School',
                yField: 'wins'
            }],
            interactions: [{
                type: 'panzoom',
                axes: ['bottom']
            }]
        }
    });

}

编辑: 当我在调试器中检查它时,我现在可以加载 json 数据,但我的图表仍然没有显示。这是我更新的代码

Ext.regModel('Details', { fields: [{ name: 'School' }, { name: 'wins'}] });

// create the Data Store
window.store1 = new Ext.data.Store({
    model: 'Details',
    proxy: {
        type: 'scripttag',
        url: 'http://localhost:2650/AjaxWCFService.svc/GetDataset',
        reader: {
            root: 'data',
            type: 'json'
        }
    },
    autoLoad: true
});

如果有人可以让我知道我做错了什么,我将不胜感激。

旧帖子: 我正在使用 json 输出绑定到我的 Sencha 柱形图。我的代码如下 -

Ext.regModel('details', { idProperty: 'name', fields: ['School', 'wins'] });
// create the Data Store
window.store1 = new Ext.data.Store({
    model: 'details',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        method: 'POST',
        url: 'http://localhost:2650/AjaxWCFService.svc/GetDataset',
        reader: {
            type: 'json',
            root: 'data'
        }
    },
    listeners: {
        load: function (obj, records) {
            Ext.each(records, function (rec) {
                console.log(rec.get('name'));
            });
        }
    } 
});

这是从 url 返回的 json 数据

{
   data: [
       {School:'Dukes',wins:'3'},
       {School:'Emmaus',wins:'10'},
       {School:'Maryland',wins:'5'},
       {School:'Virginia',wins:'2'}
   ]
}

但这不会显示图表,而是在 sencha-touch.js 文件中收到 javascript 错误“未捕获的类型错误:无法读取未定义的属性长度”。

如果我直接对来自 json 输出的数据进行硬编码,那么它可以工作

window.store1 = new Ext.data.JsonStore({
    root: 'data',
    fields: ['School', 'wins'],
    autoLoad: true,
    data: [
        {School:'Dukes',wins:'3'},
        {School:'Emmaus',wins:'10'},
        {School:'Maryland',wins:'5'},
        {School:'Virginia',wins:'2'}
    ]
});

此外,当我从 ExtDesigner 加载 jsonStore 时,它​​工作正常。当我在我的 Secha 图表 index.js 文件中复制相同的代码时,它不起作用。

有人可以让我知道我在代码中做错了什么吗?

4

2 回答 2

1

我在 Sencha 人的帮助下解决了这个问题。谢谢丹。这是解决方案:

  1. 在 Web 服务器上运行示例,因为从文件系统加载 JSON 文件有时会导致问题。
  2. 如下构造json数据

    {
        "data": [
            {
                "School": "Dukes",
                "wins": "3"
            },
            {
                "School": "Emmaus",
                "wins": "10"
            },
            {
                "School": "Maryland",
                "wins": "5"
            },
            {
                "School": "Virginia",
                "wins": "2"
            }
        ]
    }
    
  3. 使用以下数据存储

    window.store1 = new Ext.data.Store({
        model: 'Details',
        proxy: {
            type: 'ajax',
            url: 'GetDataset.json',
            reader: {
                root: 'data',
                type: 'json'
            }
        },
        autoLoad: true
    });
    
于 2012-04-24T08:18:29.987 回答
0

我在这里猜测,但这似乎是我以前遇到的问题。我相信问题出在代理上。尝试:

proxy: {
    type: 'rest',
    url: 'http://localhost:2650/AjaxWCFService.svc/GetDataset', 
    reader: {
        root: 'data'
    }

},

现在,您需要为代理定义回调函数。有一些配置的优雅方式,但老实说我不知道​​该怎么做,所以我当时发现了一个不同的解决方案,困难的方式,就是包装你的服务返回的 JSON(就像他们在这里做):

Ext.data.JsonP.callback1();

如果这些都不起作用,还可以考虑将以下内容添加到您的代理中,并发出“总计”作为 JSON 响应的一部分。

totalProperty: 'total'

但请记住,我真的认为这根本不会有太大帮助,而且我只是根据我拥有的工作样本提出这些想法。

尝试阅读这个这个。最重要的是祝你好运,这就是我的首要伙伴。也看看这个帖子。

我希望这能为您指明正确的方向。就像我说的,我不确定,这是我最好的猜测。我可能是错的。

干杯里瓦诺夫

于 2012-04-19T01:37:00.723 回答