<
telerik:RadComboBox IsTextSearchEnabled="True" TextSearchMode="StartsWith">
<telerik:RadComboBoxItem Content="Xavier1"/>
<telerik:RadComboBoxItem Content="Xavier2"/>
<telerik:RadComboBoxItem Content="Xavier3"/>
<telerik:RadComboBoxItem Content="Xavier4"/>
</telerik:RadComboBox>
| <telerik:RadGridView Name="ActiveGrid" Grid.Row="0" Style="{DynamicResource DefaultGrid}" |
| ItemsSource="{Binding Path=CompletionList}" AutoGenerateColumns="False" ScrollMode="RealTime" |
| DataLoadMode="Synchronous" CanUserSortColumns="False" SelectionChanged="RadGridView_SelectionChanged" |
| CurrentCellChanged="ActiveGrid_CurrentCellChanged" > |
| <telerik:RadGridView.Resources> |
| <ControlTemplate x:Key="completionDateCellTemplate" TargetType="{x:Type telerik:GridViewCell}"> |
| <telerik:RadDatePicker SelectionChanged="RadDatePicker_SelectionChanged" VerticalAlignment="Center" |
| SelectedDate="{Binding Path=dtDateCompleted}"/> |
| </ControlTemplate> |
| <Style x:Key="completionDateCellStyle" TargetType="{x:Type telerik:GridViewCell}"> |
| <Setter Property="telerik:GridViewCell.Template" Value="{StaticResource completionDateCellTemplate}" /> |
| </Style> |
| </telerik:RadGridView.Resources> |
| <telerik:RadGridView.Columns> |
| <telerik:GridViewDataColumn Width="*" Header="Comp." Name="CompDateCompleted" |
| CellStyle="{StaticResource completionDateCellStyle}" TextWrapping="Wrap" /> |
| </telerik:RadGridView.Columns> |
| </telerik:RadGridView> |
Hello,
I have a question regarding bar charts.
On this type of chart I need to be able to modify the height of each bar (like on a usual bar charts) but also the width of each bar (this is less usual...).
So all those bars need to be modifiable in height and width and have to be stuck together (no space between them).
Is it possible to achieve that with your library ? Do I need to use a special chart ? in 2D or 3D?
Thank you in advance for your help,
Regards,