
As you can see from the above I have created a pareto analysis graph. The problem is the left hand axis is showing the same intervals as the right hand. This of course is producing double values to be shown.
How do I get the left hand side axis to auto scale instead of following that of the same intervals as the right?
I have already messed around with the axis code but I cant seem to get this part right.
Current code I am using:
Code:
Me.grpPareto1.SetFocus Me.grpPareto1.Object.Application.Chart.Axes(xlValue, xlPrimary).TickLabels.NumberFormat = "0" Me.grpPareto1.Object.Application.Chart.Axes(xlValue, xlPrimary).MinorUnitIsAuto = True Me.grpPareto1.Object.Application.Chart.Axes(xlValue, xlPrimary).MajorUnitIsAuto = True
Chris
Comment