Hello!
I am trying to created a chat with chat bot, which has predefined answers. I display the answers with CardActionView, but I want to style them and remove vertical stroller that appears like a slider when the answers are two for example. Could you give me some advice about that?
I customize the answers with this code:
<Style TargetType="telerikConversationalUI:CardActionView"><br> <Setter Property="Template"><br> <Setter.Value><br> <ControlTemplate><br> <telerikPrimitives:RadBorder BorderThickness="5" CornerRadius="10" BorderColor="{Static helpers:Constants.MainBlue}"><br> <Label Text="{TemplateBinding Text}" <br> TextColor="{Static helpers:Constants.MainBlue}"<br> FontSize="15"<br> FontAttributes="Bold"<br> HorizontalTextAlignment="Center"<br> telerikCommon:LabelExtensions.TapCommand="{TemplateBinding Command}" /><br> </telerikPrimitives:RadBorder><br> </ControlTemplate><br> </Setter.Value><br> </Setter><br> </Style>