DashboardViewer.DashboardUri Property
OBSOLETE
The DevExpress.DashboardWin.DashboardViewer.DashboardUri property is now obsolete. Use the DashboardSource property instead.
Gets or sets the URI of the dashboard.
Namespace: DevExpress.DashboardWin
Assembly: DevExpress.Dashboard.v24.1.Win.dll
NuGet Package: DevExpress.Win.Dashboard
Declaration
[Browsable(false)]
[Obsolete("The DevExpress.DashboardWin.DashboardViewer.DashboardUri property is now obsolete. Use the DevExpress.DashboardWin.DashboardViewer.DashboardSource property instead.")]
public Uri DashboardUri { get; set; }
Property Value
Type | Description |
---|---|
Uri | A Uri object that specifies the URI of the dashboard. |
Remarks
You can open a dashboard in one of the following ways.
- Create and assign an instance of the Dashboard class to the DashboardViewer.Dashboard property.
- Specify the dashboard URI via the DashboardUri property.
- Use the DashboardViewer.LoadDashboard method to open a dashboard from a file or stream.
All these actions raise the DashboardViewer.DashboardChanged event.
See Also