PivotChartOptions.ShowAdditionalNavigation Property
Specifies the default value for the IModelPivotChartNavigation.GenerateRelatedAnalysisGroup property.
Namespace: DevExpress.ExpressApp.PivotChart.Win
Assembly: DevExpress.ExpressApp.PivotChart.Win.v24.1.dll
NuGet Package: DevExpress.ExpressApp.PivotChart.Win
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, to enable context navigation for the Pivot Chart Module, by default; otherwise, false. |
Remarks
For more information, refer to the following Module property description: ShowAdditionalNavigation.
The following example demonstrates how to specify this property:
File: MySolution.Win\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
public static WinApplication BuildApplication(string connectionString) {
var builder = WinApplication.CreateBuilder();
builder.UseApplication<MySolutionWindowsFormsApplication>();
builder.Modules
// ...
.AddPivotChart(options => {
options.ShowAdditionalNavigation = true;
})
// ...
}
// ...
}
See Also