Completed
Last Updated: 18 Mar 2020 13:01 by ADMIN
Release LIB 2020.1.323 (03/23/2020)
This is the string shown in the drop down of the property descriptions shown in the RadPivotFieldList control. The option that sorts the values from Z to A is called "Classer de A à Z", but it should be "Classer de Z à A".
Completed
Last Updated: 15 Apr 2021 12:11 by ADMIN
Release LIB 2021.1.419 (19/04/2021)

If you open a label filter dialog from the RadPivotFieldList control for a DateTime field and choose the "is between" or "is not between" operator from the combobox, you will notice that the RadDateTimePicker controls used to filter the dates very small. In this case, the empty value placeholder is clipped and if you choose any dates they are clipped too.

To work this around, you can increase the dialog's width when it opens. You can do this with the RoutedDialogEvents.RequestDialog event.

public MainWindow()
{
	InitializeComponent();
	pivotFieldList.AddHandler(RoutedDialogEvents.RequestDialog, new EventHandler<DialogHostingRequestEventArgs>(this.OnDialogHostRequested), true);
}

private void OnDialogHostRequested(object sender, DialogHostingRequestEventArgs e)
{
	var labelDialog = e.DialogInfo.Content as LabelFilterDialog;
	if (labelDialog != null)
	{
		var w = labelDialog.ParentOfType<RadWindow>();
		w.Width = 500;
	}
} 

Completed
Last Updated: 23 Aug 2021 12:25 by ADMIN
Release LIB 2021.2.823 (23 Aug 2021)
The sort order of the aggregated values is wrong when the sorted field contains null values. To reproduce this the null values should be allowed by setting the IgnoreNullValues property of the associated PropertyAggregateDescription object to False.
Completed
Last Updated: 09 Mar 2023 08:26 by ADMIN
Release R1 2023 SP1
The TotalFormat of a calculated field can be transferred to its required field when both fields are used as aggregate values.
Unplanned
Last Updated: 08 May 2024 10:31 by Martin Ivanov

Currently, you can use the FilterDescriptions of the Olap data providers (like AdomdDataProvider and XamlDataProvider) or the GroupFilter of the group descriptions. 

Add an API that allows you to implement custom filtering behavior using a filtering function or constructing custom filtering expression.

Unplanned
Last Updated: 18 Sep 2024 10:41 by Vladimir
When the ItemsSource of a LocalDataSourceProvider is null initially and than set to a new value, the FieldListViewModel of the inline field list is not refreshed. 
Unplanned
Last Updated: 18 Sep 2024 15:50 by Vladimir
Last row groups and totals are cut off when the FieldListBehavior.ShowInline attached property is set to True on the RadPivotGrid and there is a vertical scrollbar present.
Unplanned
Last Updated: 12 Nov 2024 09:50 by Martin Ivanov

Currently, the Telerik.Pivot.DataProviders.Adomd project relies on that the Microsoft.AnalysisServices.AdomdClient dll is installed in the GAC. The dll is installed with the ADOMD feature package that come with the SQL Server installation. If the required SQL Server feature is not installed on the machine, the Microsoft.AnalysisServices.AdomdClient.dll is missing from the GAC and the installation of the Telerik.Pivot.DataProviders.Adomd.for.Wpf package fails with an error. The error is:

Failed to add reference. The package 'Telerik.Pivot.DataProviders.Adomd.for.Wpf.Xaml' tried to add a framework reference to 'Microsoft.AnalysisServices.AdomdClient' which was not found in the GAC. This is possibly a bug in the package. Please contact the package owners for assistance.

Add a dependency to the Microsoft.AnalysisServices.AdomdClient package, instead of relying on the dll installed in the GAC.

1 2 3 4 5 6