|
I'd like to change the date picker for datetime parameter with a custom date picker that we developed |
As of now we don’t option to use the custom datatime picker instead of default date picker for parameter displayed in the control parameter block. However you can hide the default parameter block displayed in our control and create your own customized parameter block and pass the values to our control through SetParameter() method provided in report viewer. |
|
Specifically, I'd like to change the default heading ("ReportParameters") and the two buttons ("ParameterViewReport" and "ReportParameterCancel") |
If you are planning to implement your own parameter block then you can customize the block and its elements as per your requirements. Please confirm whether this meets your requirement, so that we can share more details on creating custom parameter user interface. |
|
ReportViewerStyle.Xaml:
<Style x:Key="CustomTheme" TargetType="local:SfReportViewer">
App.Xaml:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Key="CustomTheme" Source="ReportViewerStyle.xaml"/>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>
</Application.Resources>
MainPage.Xaml:
<Reports:SfReportViewer x:Name="ReportViewer" Style="{StaticResource CustomTheme}"/>
|