I am trying to draw chart in Teams adaptive card in Azure logic app.
please help me on this.
You can include the QuickChart chart URL as an Image-type card. For example:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "Image",
"url": "https://quickchart.io/chart?...<YOUR_QUICKCHART_URL_HERE">,
"size": "Medium"
}
]
}