How should I manipulate elements inside a TabPanel?
For example on the 1st tab I have two Items - these are charts. However the 2nd item is aligned at the bottom of the 1st item (linechart). How can I align the second item (line chart) on the right side with the first on the left?
Here's the ff code
Ext.define('UM.view.main.umcontent',{
extend: 'Ext.tab.Panel',
xtype: 'umcontent',
height: 400,
width: 2000,
tabPosition: 'left',
tabRotation: 0,
tabBar: {
border: true,
},
defaults: {
textAlign: 'left',
bodyPadding: 15
},
items: [{
title: 'Home',
autoScroll: true,
items:[{
xtype: 'OverallCost',
},
{
xtype:'OverallCount'
}
]
}, {
title: 'Utilization Summary',
autoScroll: true,
items:[{
xtype: 'Overall'
}]
}, {
title: 'TOPs'
}, {
title: ' Cases'
},
{
title: 'Members Details'
},
{
title: 'Download Report'
}
]
})