|
From: John H. <jdh...@ac...> - 2005-02-16 15:30:00
|
>>>>> "Bryan" == Bryan Cole <bry...@te...> writes:
>>>> ax.xaxis.get_minor_formatter()
Bryan> returns a NullFormatter (you would think it would return a
Bryan> LogFormatter). This made me think that both major and
Bryan> minor ticks were handled by the major formatter (which
Bryan> distinguishes them based on it's internal isDecade() call).
Well, I use a NullFormatter because minor tick labels are turned off
by default. Otherwise the labels could get quite busy. Note that
there are 4 players here
major and minor tick locators and
major and minor tick formatters
The minor tick locator is a LogLocator which recognizes the subs --
the minor tick formatter by default is a NullFormatter. This places
tick lines and empty tick labels.
JDH
|