.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > Axis Class : LabelOverrides Property
LabelOverrides Property
A collection of LabelOverride objects.
Syntax
'Declaration
 
Public Property LabelOverrides As LabelOverrideCollection
'Usage
 
Dim instance As Axis
Dim value As LabelOverrideCollection
 
instance.LabelOverrides = value
 
value = instance.LabelOverrides
public LabelOverrideCollection LabelOverrides {get; set;}
Remarks
LabelOverrides defines a string find and replace pair used to manipulate tick labels.
Example
This example will replace each tick label value of '10' with 'High'.
[C#]
Axis a = new Axis();
a.LabelOverrides.Add( new LabelOverride("10","High") );
[Visual Basic]
Dim a As New Axis()
a.LabelOverrides.Add( new LabelOverride("10","High") )
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also