Gets setttings for all Y axes of the chart.
Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf
SyntaxC#
Copy Code
|
|---|
public AxesCollection YAxes { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property YAxes As AxesCollection |
A strongly typed collection of Axis objects.
RemarksWhen 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(); |
See Also