Hi friends,
my custom tooltips never work on the first bar only of the BarSeries, here is a simple example showing this behavior. There is important data for me in that column, so let's hope it's possible to resolve this. Many thanks!
Remove the space reserved for the sort indicator in the column header, when CanUserSort is False and therefore the sort indicator is not displayed. The current behavior prevents the user to easily center the header text.
To work this around, you can edit the ControlTemplate of DataGridColumnHeader. In the template, you can update the Visibility of the TextBlock with x:Name set to "SortIndicator" when CanUserSort is False.
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.