mpl_toolkits.axisartist.axislines.AxisArtistHelper #
- classe mpl_toolkits.axisartist.axislines. AxisArtistHelper [fonte] #
Basi:
object
AxisArtistHelper dovrebbe definire il seguente metodo con determinate API. Si noti che il primo argomento axis sarà l'attributo axis dell'artista chiamante.:
# LINE (spinal line?) def get_line(self, axes): # path : Path return path def get_line_transform(self, axes): # ... # trans : transform return trans # LABEL def get_label_pos(self, axes): # x, y : position return (x, y), trans def get_label_offset_transform(self, axes, pad_points, fontprops, renderer, bboxes, ): # va : vertical alignment # ha : horizontal alignment # a : angle return trans, va, ha, a # TICK def get_tick_transform(self, axes): return trans def get_tick_iterators(self, axes): # iter : iterable object that yields (c, angle, l) where # c, angle, l is position, tick angle, and label return iter_major, iter_minor
- class Fixed ( loc , nth_coord = None ) [fonte] #
Basi:
_Base
Classe helper per un asse fisso (nelle coordinate degli assi).
nth_coord = lungo la quale varia il valore delle coordinate in 2D, nth_coord = 0 -> asse x, nth_coord = 1 -> asse y