| Visual Basic (Declaration) | |
|---|---|
| Public Property FormatString As String | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
|  | |
| C# | |
|---|---|
| public string FormatString {get; set;} | |
The following example shows the tick labels in xAxis as full month name.
             
            
            | C# |  Copy Code | 
|---|---|
| de.FormatString ="MMMM"; | |
| Visual Basic |  Copy Code | 
|---|---|
| de.FormatString ="MMMM" | |
This property usually used with conjunction of date grouping. If it doesn't set, use an appropriate format for the date grouping. For format information see DateTimeFormatInfo or NumberFormatInfo
 
     
     
     
    