Hi Experts,
I need to increase the height of generic tile without using css. Can you please provide a solution for this.
I have created a Generic Tile using below code.
var ActivityTile= new sap.suite.ui.commons.DynamicContainer({
tiles: [
new sap.suite.ui.commons.GenericTile({
header: 'Activity Type',
subheader:'Total : '+ "{ComparisonModel3>/0/Total}",
size: sap.suite.ui.commons.InfoTileSize.L,
frameType: sap.suite.ui.commons.FrameType.TwoByOne,
headerImage: '',
press: function() {
alert();
},
tileContent: [
new sap.suite.ui.commons.TileContent("oTileContent",{
content: [oChart]
})
]
}).addStyleClass("myCustomTile")
]
});
Thanks,
Sandeep