Sencha chart에 title 추가하기
2024. 11. 20. 23:40ㆍJavascript/Sencha
Ext.create('Ext.chart.CartesianChart', {
renderTo: Ext.getBody(),
width: 600,
height: 400,
title: {
text: 'My Chart Title', // Title text
style: {
fontSize: '16px', // Optional: Set the font size
fontWeight: 'bold' // Optional: Make the title bold
},
align: 'center' // Optional: Align the title ('left', 'center', 'right')
},
store: {
fields: ['name', 'value'],
data: [
{ name: 'Item 1', value: 10 },
{ name: 'Item 2', value: 20 },
{ name: 'Item 3', value: 30 }
]
},
axes: [
{
type: 'numeric',
position: 'left',
title: {
text: 'Values',
style: {
fontSize: '12px'
}
}
},
{
type: 'category',
position: 'bottom',
title: {
text: 'Items',
style: {
fontSize: '12px'
}
}
}
],
series: [
{
type: 'bar',
xField: 'name',
yField: 'value'
}
]
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha chart tbar를 사용하여 상단 오른쪽에 버튼 추가하기 (0) | 2024.11.23 |
---|---|
Sencha chart의 x축의 값 변경하기 (0) | 2024.11.20 |
Sencha type: 'combobox' 값 변경시, 다른 combobox 변경하기 (0) | 2024.11.18 |
Sencha chart에서 데이터 바인딩하기 (0) | 2024.11.15 |
Sencha Ext.Msg.alert에서 클릭시 특정 페이지로 redirect (0) | 2024.10.20 |