99445609 2016-03-29 16:11 采纳率: 100%
浏览 1178
已采纳

extjs构建图表代码哪里不对求指导,需要引入chart.swp吗

function timee1chartPanel(){
var timee1chartPanel=Ext.create("Ext.panel.Panel",{
title:"管理用户",
layout:'fit',
items:[checkAllTimee1chart()]
});
return timee1chartPanel;
}
function checkAllTimee1chart(){
new Ext.Viewport({
layout:'fit',
item:[{
xtype:'chart',
store:store,
axes:[
{
title:'Temperature',
type:'Numeric',
position:'left',
fields:['temperature'],
minimm:0,
maximum:100,

             },
             {
                 title:'Time',
                 type:'Category',
                 position:'bottom',
                 fields:['date']
             }
              ],
              series:[
                  {
                    type:'line',
                    xField:'date',
                    yField:'temperature'

                  }    
                      ]
    }]
    })

};

Ext.define('WeatherPoint', {
extend: 'Ext.data.Model',
fields: ['temperature', 'date']
});
var store = Ext.create('Ext.data.Store', {
model: 'WeatherPoint',
data: [
{ temperature: 58, date: new Date(2011, 1, 1, 8) },
{ temperature: 63, date: new Date(2011, 1, 1, 9) },
{ temperature: 73, date: new Date(2011, 1, 1, 10) },
{ temperature: 78, date: new Date(2011, 1, 1, 11) },
{ temperature: 81, date: new Date(2011, 1, 1, 12) },
]

}

  • 写回答

1条回答 默认 最新

  • 斯洛文尼亚旅游 2016-07-05 01:25
    关注

    checkAllTimee1chart直接返回chart配置,要不panel里面又嵌套viewpoint会报错,还有一个问题就是没见你再那里显示panel。。

           function checkAllTimee1chart(){
               return  {
                        xtype:'chart',
                        store:store,
                        axes:[
                        {
                            title:'Temperature',
                            type:'Numeric',
                            position:'left',
                            fields:['temperature'],
                            minimm:0,
                            maximum:100,
    
                        },
                                     {
                                         title:'Time',
                                         type:'Category',
                                         position:'bottom',
                                         fields:['date']
                                     }
                        ],
                        series:[
                            {
                                type:'line',
                                xField:'date',
                                yField:'temperature'
    
                            }    
                        ]
                    }
            }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 云卓h12pro 数传问题
  • ¥20 请问有人知道怎么用工艺库里面的sdb文件通过virtuoso导出来library里面每个cell的symbol吗?
  • ¥20 海思 nnie 编译 报错
  • ¥50 决策面并仿真,要求有仿真结果图
  • ¥15 springboot接入微信支付SDK
  • ¥50 大区域的遥感影像匹配 怎么做啊
  • ¥15 求解答:pytorch跑yolov8神经网络受挫
  • ¥20 Js代码报错问题不知道怎么解决
  • ¥15 gojs 点击按钮node的position位置进行改变,再次点击回到原来的位置
  • ¥20 halcon 图像拼接