DashboardDesignerViewerSourceDataHandling Property |
|
DataPA OpenAnalytics API Reference
Gets and sets a value that indicates how the control will manage source data in a dashboard when opened in a viewer only client
Namespace: DataPAEnterpriseDashboardAssembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)
Syntax public DashboardDesignerViewerSourceDataHandlingEnum ViewerSourceDataHandling { get; set; }
Public Property ViewerSourceDataHandling As DashboardDesignerViewerSourceDataHandlingEnum
Get
Set
public:
virtual property DashboardDesignerViewerSourceDataHandlingEnum ViewerSourceDataHandling {
DashboardDesignerViewerSourceDataHandlingEnum get () sealed;
void set (DashboardDesignerViewerSourceDataHandlingEnum value) sealed;
}
function get_ViewerSourceDataHandling();
function set_ViewerSourceDataHandling(value);
Property Value
Type:
DashboardDesignerViewerSourceDataHandlingEnumA value that indicates how the control will manage source data in a dashboard when opened in a viewer only client
Return Value
Type:
DashboardDesignerViewerSourceDataHandlingEnumA value that indicates how the control will manage source data in a dashboard when opened in a viewer only client
Remarks Possible Values are;
Cache = 0: If a dashboard is opened in a viewer only client, the source data will not be loaded into memory. However, it will be written to a temporary file on disk, and loaded on demand if required.
Load = 1: The source data will always be loaded for a dashboard.
NoData = 2: If a dashboard is opened in a viewer only client, the source data will not be loaded into memory and will not be available unless the dashboard is re-opened. This will prevent any editing of the dashboard objects.
See Also