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



Returns a string for the image map generated for the current chart image.

Syntax

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

Example

C#Copy Code
ImageMapLabel.Text = Chart.ImageMapText //read only 
Visual BasicCopy Code
ImageMapLabel.Text = Chart.ImageMapText //read only

See Also