Title(2)
-
Sencha chart에 title 추가하기
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') }, sto..
2024.11.20 -
Sencha panel title click시, 화면 refresh하기
{ xtype: 'panel', width: leftWidth, bodyStyle: 'background-color:black', html: ' Home', listeners: { click: { element: 'el', fn: function() { window.location.reload(); } } }},
2024.10.01