Hello Manali,
Please try this:
In controller:
this.getView().setModel(oModel,"model");
In View set TileContainer tiles (it's only example - change name of fileds):
<TileContainer tiles="{model>/data}">
<StandardTile icon="sap-icon://{model>icon}" type="{model>type}" number="{model>count}" numberUnit="{model>numberUnit}" title="{model>title}" info="{model>info}" infoState="{model>state}" />
</TileContainer>
It's also depends on JSON structure. It should look like this:
{
data: [
{
"Count": "5",
...
},
{
..
}
...
]
}