BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
I'm working with the GroupBar control in horizontal orientation mode. My problem comes in with the GroupViewItems' text being cut off.
I can almost get around this by changing the GroupView Width property, but this causes only one item to be displayed per line. Also, no scroll bars appear when the items are no longer on the screen.
Here is the xml markup I am using:
<syncfusion:GroupBar x:Name="filterBar" AllowDragandDrop="True" AllowCollapse="False" Orientation="Horizontal" VisualMode="StackMode" >
<syncfusion:GroupBarItem HeaderText="Filter" ShowInGroupBar="False">
<syncfusion:GroupView IsListViewMode="True" >
<syncfusion:GroupViewItem Text="Item Number" />
<syncfusion:GroupViewItem Text="Store"/>
<syncfusion:GroupViewItem Text="Other View Item"/>
<syncfusion:GroupViewItem Text="The next item"/>
<syncfusion:GroupViewItem Text="Look at this item"/>
<syncfusion:GroupViewItem Text="Another item"/>
<syncfusion:GroupViewItem Text="Another item"/>
<syncfusion:GroupViewItem Text="Another item"/>
</syncfusion:GroupView>
</syncfusion:GroupBarItem>
</syncfusion:GroupBar>
I've attached the code behind and the xml markup for this.
How do I increase the amount of text shown for each GroupViewItem?