Class ExportOptions
Indicates configuration for exporting a dashboard
Inheritance
System.Object
ExportOptions
Implements
Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.Server.dll
Syntax
public abstract class ExportOptions : Object, IExportOptions
Constructors
ExportOptions()
Initializes a new instance of the export options.
Declaration
public ExportOptions()
ExportOptions(IExportOptions)
Initializes a new instance of the export options from existing export options.
Declaration
public ExportOptions(IExportOptions options)
Parameters
| Type | Name | Description |
|---|---|---|
| IExportOptions | options | The export options to copy values from. |
Properties
Filters
Dashboard filters to apply during the export.
Declaration
public 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
public bool IncludeFiltersSummaryPage { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
MaxCacheAge
Maximum age of cached data used during the export.
Declaration
public Nullable<TimeSpan> MaxCacheAge { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.TimeSpan> |
MaxCells
Max cells returned when getting dashboard data
Declaration
public int MaxCells { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Theme
Theme object to indicate export used colors
Declaration
public IDashboardTheme Theme { get; set; }
Property Value
| Type | Description |
|---|---|
| IDashboardTheme |
Timeout
Timeout in seconds for exporting a dashboard
Declaration
public int Timeout { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
TimeZone
Timezone in IANA format
Declaration
public string TimeZone { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
UserLanguage
User language
Declaration
public 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
public List<VisualizationExport> Visualizations { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<VisualizationExport> |