Gets setttings for all X axes of the chart.
Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf
C# Copy Code |
---|
public AxesCollection XAxes { get; set; } |
Visual Basic Copy Code |
---|
Public Property XAxes As AxesCollection |
A strongly typed collection of Axis objects.
When customizing Axis in XAML assign a whole collection to the property. This will reset it and clear any default Axis that might have been added.
XAML Copy Code |
---|
<chart:AxesCollection> |
When working in code you should also clear the predefined axes:
C# Copy Code |
---|
barChart1.XAxes.Clear(); |