dotnetCHARTING Send comments on this topic.
URLTarget Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : URLTarget Property



Gets or sets the target of the URL link.

Syntax

Visual Basic (Declaration) 
Public Property URLTarget As String
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As String
 
instance.URLTarget = value
 
value = instance.URLTarget
C# 
public string URLTarget {get; set;}
C++/CLI 
public:
property String^ URLTarget {
   String^ get();
   void set (String^ value);
}

Example

C#Copy Code
Chart.URLTarget = "_blank"; 
Visual BasicCopy Code
Chart.URLTarget = "_blank"

See Also