PivotChartOptions.DataAccessMode Property
Specifies the mode used to access the Collection Source’s collection.
Namespace: DevExpress.ExpressApp.PivotChart.Win
Assembly: DevExpress.ExpressApp.PivotChart.Win.v24.1.dll
NuGet Package: DevExpress.ExpressApp.PivotChart.Win
Declaration
Property Value
Type | Description |
---|---|
CollectionSourceDataAccessMode | A CollectionSourceDataAccessMode enumeration value that specifies the mode used to access a collection of business objects in List Views. |
Remarks
For more information, refer to the following Module property description: DataAccessMode.
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.DataAccessMode = CollectionSourceDataAccessMode.Client;
})
// ...
}
// ...
}
See Also