ExtJS - Pie Chart
결국 결과는 괜찮았어요. 귀울림이 미미해서 다음 주에 재진할 거예요.
모든 과학적 산물을 싫어하고 그들은 자연 사물의 발전 본성에 깊이 위배된다고 느낀다. 비록 본성은 나를 죽게 인도하지만.
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();
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Angular에서 HTTPClient 모듈을 사용하여 API의 데이터로 차트 만들기실시간 각도 응용 프로그램에서 데이터를 얻기 위해 일부 API 또는 서비스와 상호 작용하는 경우가 많습니다. 국가에 대한 통계를 표시하기 위해 애플리케이션을 구축하는 경우 일부 타사 API 또는 서비스를 사용하여 데...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.