Hello.
There is an AxisSection on each X and Y axis.
The code is,
// Axis X : 8~10 Area
ChartFX.WinForms.AxisSection XSection = new ChartFX.WinForms.AxisSection(8, 10, Color.LightBlue);
chart1.AxisX.Sections.Add(XSection);
// Axis Y : 50+-1 Red Line
ChartFX.WinForms.AxisSection YSection = new ChartFX.WinForms.AxisSection(50+1, 50-1, Color.Red);
chart1.AxisY.Sections.Add(YSection);
I expected that the red line would be shown over the the lightblue area.
However, the red line from 8~10 area is always behind of the lightblue area.
What I was wondering is, how can I change the Z index priority of the AxisSections of X and Y axis?
I want to show the Y-AxisSection over the X-AxisSection.
I need help.
Thank you..!