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
240
Logarithmic MinorGridlines (Mis)Behavior
posted

Minor Gridlines should not be evenly spaced on logarithmic scale.  Am I missing something in the configuration?

         <igCA:XamChart Name="xamChart1" VerticalAlignment="Bottom" MouseMove="xamChart1_MouseMove" MouseDown="xamChart1_MouseDown">
            <igCA:XamChart.Axes>
                <igCA:Axis AxisType="PrimaryY" Logarithmic="True">
                    <igCA:Axis.MajorGridline>
                        <igCA:Mark Stroke="black" Unit="1" />
                    </igCA:Axis.MajorGridline>
                    <igCA:Axis.MinorGridline>
                        <igCA:Mark Stroke="LightGray" Unit=".1"  />
                    </igCA:Axis.MinorGridline>
                </igCA:Axis>
                <igCA:Axis AxisType="PrimaryX" Logarithmic="False"></igCA:Axis>
            </igCA:XamChart.Axes>

 The minor gridlines are evenly spaced when they should be logarithmically spaced as in this chart:

SemiLog Chart Image

Parents
No Data
Reply
  • 17605
    posted

    Actually, this is a bug in our XamChart. We tracked it in our system, so I guess this fix will be available in the next hotfix.

Children