I am using adaptive card version 1.2.6 for MS Teams bot integration. As per my UI Requirements, I need to display compact style choice set options in a single line. But adaptive card designers displaying horizontally. Is it possible to show options in a single line(vertically)?
Design JSON:
{
"spacing": "Small",
"id": "leave_duration",
"placeholder": "Leave Duration",
"type": "Input.ChoiceSet",
"style": "expanded",
"isMultiSelect": true,
"choices": [
{
"title": "First Half",
"value": "First Half"
},
{
"title": "Second Half",
"value": "Second Half"
},
{
"title": "Full Day",
"value": "Full Day"
}
],
"separator": true
}