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
95
Logarithmic grid lines : possible?
posted

 Hello,

How can I use UltraChart with logarithmic grid lines for X or Y axes? I'm not speaking of logarithmic scale for X or Y axis, but to draw the grid itself, like what's shown in http://en.wikipedia.org/wiki/Image:600px-LinLogScale.png

 

Regards

MG 

Parents
No Data
Reply
  • 26458
    Offline posted

    Sure, first you need to enable the minor gridlines: chart.Axis.X.MinorGridLines.Visible = true;
    set the following properties under chart.Axis.X

    NumericAxisType = Logarithmic
    TickmarkStyle = DataInterval
    TickmarkInterval = 1
    RangeMin = 1
    RangeMax = 1000
    RangeType = Custom

Children