This is the same feature as the TickOrigin in the WPF chart: https://docs.telerik.com/devtools/wpf/controls/radchartview/axes/axis
The property should specify where the ticks originate.
Hi Team,
This is a request to add a Signature control to UI for WinUI. Where the user can use a Touch or Stylus input to add their signature to the app GUI. This signature can then be saved as either a bitmap or vector file.
Thank you,
Rodney
Setting the MaxValue, MinValue and Value properties at runtime doesn't work when the settings are done in the Opened event handler of RadDatePicker. The DateTime values of the properties are updated as expected, but this is not reflected in the UI.
To work this around, you can use the Click event of the internal DateTimePickerButton, instead of the Opened event.
private void DatePicker_Loaded(object sender, RoutedEventArgs e)
{
var btn = this.datePicker.FindChildByType<DateTimePickerButton>();
btn.Click += Btn_Click;
}
private void Btn_Click(object sender, RoutedEventArgs e)
{
var vm = (MainViewModel)this.datePicker.DataContext;
this.datePicker.MinValue = DateTime.Today;
}
The group header row overlaps the column headers when scrolling to a column that is out of view upon previously resizing the window and the GroupHeaderDisplayMode is Frozen.