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



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

Syntax

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

Example

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

See Also