Lines Matching refs:atx
920 self.atx = kwds["atx"]; del kwds["atx"]
948 d = ([Axes(self.xmin, self.xmax, self.ymin, self.ymax, self.atx, self.aty,
3304 …self.ymin, self.ymax, self.atx, str(self.ticks), str(self.labels), self.attr) # XXX self.ymin/ymax…
3306 def __init__(self, ymin, ymax, atx=0, ticks=-10, miniticks=True, labels=True, logbase=None, argument
3308 self.atx = atx
3311 …LineAxis.__init__(self, atx, ymin, atx, ymax, ymin, ymax, ticks, miniticks, labels, logbase, arrow…
3315 self.x1 = self.atx
3316 self.x2 = self.atx
3357 self.xmin, self.xmax, self.ymin, self.ymax, self.atx, self.aty, self.attr)
3359 def __init__(self, xmin, xmax, ymin, ymax, atx=0, aty=0, argument
3365 self.atx, self.aty = atx, aty
3378 atx, aty = self.atx, self.aty
3379 if atx < self.xmin:
3380 atx = self.xmin
3381 if atx > self.xmax:
3382 atx = self.xmax
3389 xexclude = atx - xmargin, atx + xmargin
3403 …yaxis = YAxis(self.ymin, self.ymax, atx, self.yticks, self.yminiticks, self.ylabels, self.ylogbase…