Log Chart Not Displaying Scale Correctly
Posted: Fri Nov 09, 2012 5:55 am
If I select a log scale on a points chart with a log scale of minimum 0.1 and maximum 100 (3 cycle), the log scale (tick marks) from 0.1 to 1 will not display. The log scale from 1 to 10 and 10 to 100 displays correctly. Can you confirm this is a bug?
' Case Log Linear
Points1.Chart.Axes.Right.Logarithmic = True
Points1.Chart.Axes.Right.LogarithmicBase = 10
Points1.Chart.Axes.Left.Logarithmic = True
Points1.Chart.Axes.Left.LogarithmicBase = 10
Points1.Chart.Axes.Bottom.Logarithmic = False
Points1.Chart.Axes.Top.Logarithmic = False
' End Select
Points1.Chart.Axes.Left.Maximum = 100
Points1.Chart.Axes.Left.Minimum = 0.1
Points1.Chart.Axes.Right.Maximum = 100
Points1.Chart.Axes.Right.Minimum = 0.1
' Case Log Linear
Points1.Chart.Axes.Right.Logarithmic = True
Points1.Chart.Axes.Right.LogarithmicBase = 10
Points1.Chart.Axes.Left.Logarithmic = True
Points1.Chart.Axes.Left.LogarithmicBase = 10
Points1.Chart.Axes.Bottom.Logarithmic = False
Points1.Chart.Axes.Top.Logarithmic = False
' End Select
Points1.Chart.Axes.Left.Maximum = 100
Points1.Chart.Axes.Left.Minimum = 0.1
Points1.Chart.Axes.Right.Maximum = 100
Points1.Chart.Axes.Right.Minimum = 0.1