我正在使用 ExtJS3,我想将此图表放入具有动态存储的面板中 http://dev.sencha.com/deploy/ext-3.4.0/examples/chart/pie-chart.html
我试图将此图表包含到我的面板代码中,但它不起作用。有没有人有 ExtJS3 面板中包含的图表的解决方案或示例
谢谢
我正在使用 ExtJS3,我想将此图表放入具有动态存储的面板中 http://dev.sencha.com/deploy/ext-3.4.0/examples/chart/pie-chart.html
我试图将此图表包含到我的面板代码中,但它不起作用。有没有人有 ExtJS3 面板中包含的图表的解决方案或示例
谢谢
我使用您的示例使用动态商店生成图表:
Ext.chart.Chart.CHART_URL = 'http://dev.sencha.com/deploy/ext-3.4.0/resources/charts.swf';
Ext.onReady(function(){
var store = new Ext.data.JsonStore({
url: "sample_data.php",
root: 'results',
fields: [
{name: 'season'},
{name: 'total'}
]
});
new Ext.Panel({
width: 400,
height: 400,
title: 'Pie Chart with Legend - Favorite Season',
renderTo: 'container',
items: {
store: store,
xtype: 'piechart',
dataField: 'total',
categoryField: 'season',
//extra styles get applied to the chart defaults
extraStyle:
{
legend:
{
display: 'bottom',
padding: 5,
font:
{
family: 'Tahoma',
size: 13
}
}
}
}
});
});
在哪里http://dev.sencha.com/deploy/ext-3.4.0/resources/charts.swf
可以找到图表的目标,sample_data.php 返回以下 json:
{"results":[
{"total":"150","season":"Summer"},
{"total":"245","season":"Fall"},
{"total":"117","season":"Winter"},
{"total":"184","season":"spring"}
]}
注意:这通常应该设置为本地资源。
希望这可以帮助。