I have a chart which needs 2 Y axis. If I use the Column Chart for example it works.
However if I change it to ColumnChart3D, the left Axis (y) is ok, but the Y2 axis, to the right, all the axis labels are printed one on top of the other.
Am I missing something ?
thanks
Fred
Hello Fred,
If you want to achieve desired behavior you should set both properties to True:
- Y2.Labels.Visible=true;
- Y2.Visible = true;
Please take a look at the attached video file for more details.
Regards
This is what I get..
see on the right, the number are like all typed one on top of another
what is the
area.Axes.Add(axisY);
AREA property, it's a property of what
What if my data in like so
Does your method still applies ?
Could you please take a look at the attached sample and if you think that I didn`t reproduce your scenario, please feel free to modify this sample to reproduce your scenario and issue and revert it back to me. I`ll be glad ot research your issue.
Let me know if you have any questions
Here is the sample
looked at your sample.. thanks.. very close i think
the problem remaining is that 2 columns will have huge numbers in the 10000 and the last one small numbers
So i would like first two to be on different scale (y) that last one (y1) so last column is not dwarfed by the scale
Quote