ExtJS - Pie Chart

2852 단어 chartExtJsoverpie
어제 병을 꺼리고 치료를 꺼렸던 나는 백방으로 어쩔 수 없이 의사에게 진찰을 받았다.의사가 전기 드릴을 들고 내 귀에서 제멋대로 행동하는 것 같아, 귀가 먹을 것 같아!
결국 결과는 괜찮았어요. 귀울림이 미미해서 다음 주에 재진할 거예요.
모든 과학적 산물을 싫어하고 그들은 자연 사물의 발전 본성에 깊이 위배된다고 느낀다. 비록 본성은 나를 죽게 인도하지만.
Ext.onReady(function()  
{  
    var store = Ext.create('Ext.data.ArrayStore',   
    {  
        fields:   
        [  
            {name: 'os'},  					 // default for string  
            {name: 'visits', type: 'int'}  
        ],  
        data:   
        [  
            ['Windows','21548'],  
            ['Linux', '19864'],  
            ['Mac OS', '18459'],  
            ['Android','5762'],  
            ['iOS', '5635']  
        ]  
    });  
  
    Ext.create('Ext.window.Window',  
    {  
        title: 'Pie Chart',  
        width: 550,  
        height: 400,  
        layout: 'fit',  
        items:   
        {  
            xtype: 'chart',  
            animate: true,  
            shadow: true,  		 //  ?  , 。  
            store: store,  
            legend: {position: 'right'},  
            series:   
            [  
                {  
                    type: 'pie',  
					angleField: 'visits', 		//   field
                    showInLegend: true,  
					insetPadding: 30,
                    highlightDuration: 200,     // the last time of animation  
                    colorSet: ['#4EEE94','#63B8FF','#836FFF','#8A2BE2','#7FFF00'],  	//  
                    label:   
                    {  
                        field: 'os',  
                        display: 'rotate',      //  , API  
                        contrast: true,         //  ,   
                        font: '16px Arial',   
                    },  
                    tips:   
                    {  
                        trackMouse: true,  
                        width: 150,  
                        height: 30,   
                        renderer: function(storeItem, item) {  
                            var total = 0;  
                            store.each(function(rec) {  
                                total += rec.get('visits');  
                            });  
                            this.setTitle(storeItem.get('os') + ': ' + Math.round(storeItem.get('visits') / total * 100) + '%');  
                        }  
                    },  
                    highlight:   
                    {  
                        segment: { margin: 20 }     //    
                    },  
                    donut: 40 						//  40%  
                }  
            ]  
        }  
    }).show();  
});  

좋은 웹페이지 즐겨찾기