Is there a way to remove the column header and only show the values? I am showing this in a datagrid and it would be nice to regain the space above the actual values.
<datagrid:DataGridTemplateColumn HeaderText="Hold Time (M)"
MappingName="Duration"
Width="300">
<datagrid:DataGridTemplateColumn.CellTemplate>
<DataTemplate x:DataType="model:Step">
<picker:SfTimePicker x:Name="picker"
Format="HH_mm"
TextDisplayMode="FadeAndShrink"
Mode="Default"
ItemHeight="50"
SelectedTime="{Binding Duration, Mode=TwoWay, Converter={converters:MinutesToTimeSpanConverter}}"
MaximumTime="5:0:0">
<picker:SfTimePicker.ColumnHeaderView>
<picker:TimePickerColumnHeaderView HourHeaderText="" MinuteHeaderText="" />
</picker:SfTimePicker.ColumnHeaderView>
</picker:SfTimePicker>
</DataTemplate>
</datagrid:DataGridTemplateColumn.CellTemplate>