FlexChart > Working with FlexChart > FlexChart Elements > FlexChart Axes Labels > Axes Labels Overlap |
In case there are overlapping labels in the chart for any reason, you can manage the same using the OverlappingLabels property.
The OverlappingLabels property accepts the following values in the OverlappingLabels enumeration:
Property | Description |
---|---|
OverlappingLabels.Auto | Hides overlapping labels. |
OverlappingLabels.Show | Shows all labels including the overlapping ones. |
Here is the code snippet:
flexChart.AxisX.OverlappingLabels = C1.Chart.OverlappingLabels.Auto; flexChart.AxisY.OverlappingLabels = C1.Chart.OverlappingLabels.Show;