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



Gets or sets the default text of empty element labels. See Chart.DefaultSeries.DefaultElement.SmartLabel

Syntax

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

Example

C#Copy Code
Chart.EmptyElementText = "N/A"; 
Visual BasicCopy Code
Chart.EmptyElementText = "N/A"

See Also