I want make my Items inside a ListView going right to left.
At the moment I have default settings:

As you can see I have a hole in the right and I want to reverse this, put a hole in the left.
Hope you understand the problem.
```
<telerikDataControls:RadListView ItemsSource="{Binding CatalogSizes, Source={x:Reference ExtendedContentView}}" >
<telerikDataControls:RadListView.ItemTemplate>
<DataTemplate>
<listView:ListViewTemplateCell>
<listView:ListViewTemplateCell.View>
<Frame Padding="0" CornerRadius="3.5" BackgroundColor="{Binding IsEnabled, Converter={StaticResource Batata}, ConverterParameter={x:Reference Name=MainColorGrid}}">
<Label Text="{Binding Quantity}" FontAttributes="Bold" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
</Frame>
</listView:ListViewTemplateCell.View>
</listView:ListViewTemplateCell>
</DataTemplate>
</telerikDataControls:RadListView.ItemTemplate>
<telerikDataControls:RadListView.LayoutDefinition>
<listView:ListViewGridLayout SpanCount="3" HorizontalItemSpacing="3" />
</telerikDataControls:RadListView.LayoutDefinition>
</telerikDataControls:RadListView>
```
At the moment I have default settings:

As you can see I have a hole in the right and I want to reverse this, put a hole in the left.
Hope you understand the problem.
```
<telerikDataControls:RadListView ItemsSource="{Binding CatalogSizes, Source={x:Reference ExtendedContentView}}" >
<telerikDataControls:RadListView.ItemTemplate>
<DataTemplate>
<listView:ListViewTemplateCell>
<listView:ListViewTemplateCell.View>
<Frame Padding="0" CornerRadius="3.5" BackgroundColor="{Binding IsEnabled, Converter={StaticResource Batata}, ConverterParameter={x:Reference Name=MainColorGrid}}">
<Label Text="{Binding Quantity}" FontAttributes="Bold" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
</Frame>
</listView:ListViewTemplateCell.View>
</listView:ListViewTemplateCell>
</DataTemplate>
</telerikDataControls:RadListView.ItemTemplate>
<telerikDataControls:RadListView.LayoutDefinition>
<listView:ListViewGridLayout SpanCount="3" HorizontalItemSpacing="3" />
</telerikDataControls:RadListView.LayoutDefinition>
</telerikDataControls:RadListView>
```