dotnetCHARTING Send comments on this topic.
ValueLabel Property
See Also 
dotnetCHARTING Namespace > ChartArea Class : ValueLabel Property



Gets or sets a label that specifies the font and color of element labels drawn on the chart.

Equivalent to: Chart.DefaultSeries.DefaultElement.SmartLabel

Syntax

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

See Also