Function
(defaxis name ([class]) {keyword value}* {(meta-info)}*)
Defines a new axis prototype named name. An axis prototype
is an axis instance that acts as a template for instantiating plotter display axes with similar
characteristics. Class is the class of the prototype,
either axis or log-axis. Defaults
to axis if no class is
supplied. Following class comes the prototype's
initialization list. See
axis initializations for the list of
available initializations. Following the initializations comes any
"meta-info" that should be associated with the prototype. This is
information that may be of use to the prototype but not to the axes that
are derived from it. Meta-info consists of lists of information; the
system currently defines two:
slot-exists-p.;; The system definition of the :seconds axis prototype. (defaxis :seconds () :minimum 0 :maximum nil :increment 1 :ticks-per-increment 4 :labeler "~,2F" (:appropriate-slots :horizontal (time start start-time begin duration dur x z)))