microsoft / BotFramework-WebChat

A highly-customizable web-based client for Azure Bot Services.
https://www.botframework.com/
MIT License
1.59k stars 1.53k forks source link

How to display data in Table format with Webchat/Directline channel in Python bot #5204

Closed tanmoy007-ghosh closed 3 months ago

tanmoy007-ghosh commented 3 months ago

I have a question

How to display data in Table format with Webchat/Directline channel in Python bot

OEvgeny commented 3 months ago

WebChat uses adaptive cards for advanced markup. Please refer to Adaptive Cards documentation: https://adaptivecards.io/explorer/Table.html

Alternatively, you could use activityMiddleware to adjust activities rendering for the specific data format you want to render.

Closing as this is not an issue on WebChat side