Interface IExportOptions
Indicates configuration for exporting a dashboard
Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.Server.dll
Syntax
public interface IExportOptions
Properties
Filters
Dashboard filters applied during the export.
Declaration
List<IRVDashboardFilter> Filters { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<IRVDashboardFilter> |
IncludeFiltersSummaryPage
Indicates whether a summary page listing the active filters is appended to the export.
Declaration
bool IncludeFiltersSummaryPage { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
MaxCacheAge
Maximum age of cached data used during the export.
Declaration
Nullable<TimeSpan> MaxCacheAge { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.TimeSpan> |
MaxCells
Max cells returned when getting dashboard data
Declaration
int MaxCells { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Theme
Theme object to indicate export used colors
Declaration
IDashboardTheme Theme { get; set; }
Property Value
| Type | Description |
|---|---|
| IDashboardTheme |
Timeout
Timeout in seconds for exporting a dashboard
Declaration
int Timeout { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
TimeZone
Timezone in IANA format
Declaration
string TimeZone { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
UserLanguage
User language
Declaration
string UserLanguage { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Visualizations
List of visualizations that will be exported. If this collection is empty all visualizations are exported
Declaration
List<VisualizationExport> Visualizations { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<VisualizationExport> |