Wondering if anyone else has an issue with the linear scale when large values are entered for the maxValue and majorTicks.span?
For example if the maxValue of the scale is set to a value over 50,000 and the majorTicks.span is set to 10,000 it takes the scale a few seconds to render. Now if the maxValue is set to 300,000 and the majorTicks.span is set to 50,000 the designer application locks up. Have to use task manager to close the application.
Try setting them in this sequence:
fineTicks.span : 5000
minorTicks.span : 10000
majorTicks.span : 300000
Doing them in this order will minimise the number of fine ticks generated during the edit. If you were to change maxValue to 300,000 while fineTicks is set to 1 then you are requesting 300,000 fine ticks!
2 Likes
That is it!!! I did not think about the minor and fine ticks as I have the stroke set to 0 for those. Set the span for those three as you suggested and no more lockup. Now will get the binding on those set relative to the majorTicks.span and then should work like a champ.
Thanks for the nudge in the right direction.