I am using the bot framework v4 SDK for webchat. I have used suggested actions for the choice prompt. By default, the suggested actions are aligned horizontally. Is there a way in which that can be made vertical?
I have tried the style options for the choice prompt as hero card and list.B ut in both the cases the choices will remain on the chat window and will not disappear. So the only option I had, was to use suggested actions. I could not find a way to make the suggested actions to appear vertically.
PromptOptions choicePromptOptions = new PromptOptions
{
Choices = choices,
Prompt = MessageFactory.Text("Please choose :"),
RetryPrompt = null,
Style = ListStyle.SuggestedAction
};
Is there any other way to make the choices disappear other than suggested actions ?