botframework - How to change the size and other properties of the chat window -
i have created simple bot application using botframework. embedding chat window in iframe. how can control chat window size , other properties color, font etc.
you can size iframe options of modifying what's in limited - css override body style content in iframe?.
here's how typically integrate provided bot framework's iframe
size control:
<div id="bot"> <iframe src="https://webchat.botframework.com/embed/..." style="height: 600px; width: 500px; resize: both;"> </iframe> </div>
if want have more control on how web chat renders, might want @ other more advanced options of integrating web chat. read more on github page: https://github.com/microsoft/botframework-webchat
Comments
Post a Comment