Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1815
Ultrachart with two chart areas (i.e. A Line and Gantt chart area) with up to a total of three layers - Can I hide the AxisX or it's labels int eline chart but show them in the Gantt?
posted
I have a Ultrachart with two chart areas (i.e. Line and Gantt) with up to three layers in total
Two layers on the Line chart and one on the Gantt chart
I am trying to  hide the AxisX (or it's labels) in the line chart but show them in the Gantt.
I try to do the following
uchartPersonChart.CompositeChart.ChartLayers(0).AxisX.Labels.Visible = False uchartPersonChart.CompositeChart.ChartLayers(1).AxisX.Labels.Visible = False uchartPersonChart.CompositeChart.ChartLayers(2).AxisX.Labels.Visible = True

but as soon the last line above is executed all AxisX or AxisX labels are visible.

Any suggestions please?