Version

VisualizationLinkingDashboard Event

Event used to implement dashboard linking, this handler must return the contents of the target dashboard (in rdash format).
Syntax
'Declaration
 
Public Event VisualizationLinkingDashboard As EventHandler(Of VisualizationLinkingDashboardEventArgs)
public event EventHandler<VisualizationLinkingDashboardEventArgs> VisualizationLinkingDashboard
Event Data

The event handler receives an argument of type VisualizationLinkingDashboardEventArgs containing data related to this event. The following VisualizationLinkingDashboardEventArgs properties provide information specific to this event.

PropertyDescription
Callback Callback function to invoke when processing the RevealView.VisualizationLinkingDashboard event with the contents of the target dashboard.
Title Title of the link, as specified when the link was defined in the dashboard.
Url URL to the target dashboard, usually an internal URL containing the ID of the target dashboard.
Example
private void RevealView_VisualizationLinking(object sender, VisualizationLinkingDashboardEventArgs e)
{
     e.Callback("Campaigns", GetDashboardStream("Campaigns"));
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also