Home | History | Annotate | Download | only in pattern_tools

Lines Matching refs:exclude

3157                  logbase=None, arrow_start=None, arrow_end=None, exclude=None, text_attr={}, **attr):
3160 self.exclude = exclude
3167 if self.exclude is not None and not (isinstance(self.exclude, (tuple, list)) and len(self.exclude) == 2 and
3168 isinstance(self.exclude[0], (int, long, float)) and isinstance(self.exclude[1], (int, long, float))):
3169 raise TypeError, "exclude must either be None or (low, high)"
3172 if self.exclude is None:
3177 if self.exclude[0] <= loc <= self.exclude[1]:
3214 exclude, text_attr, attribute=value)
3234 exclude default=None if a (low, high) pair, don't draw text
3239 The exclude option is provided for Axes to keep text from overlapping
3252 arrow_start=None, arrow_end=None, exclude=None, text_attr={}, **attr):
3256 LineAxis.__init__(self, xmin, aty, xmax, aty, xmin, xmax, ticks, miniticks, labels, logbase, arrow_start, arrow_end, exclude, tattr, **attr)
3269 exclude, text_attr, attribute=value)
3289 exclude default=None if a (low, high) pair, don't draw text
3294 The exclude option is provided for Axes to keep text from overlapping
3307 arrow_start=None, arrow_end=None, exclude=None, text_attr={}, **attr):
3311 LineAxis.__init__(self, atx, ymin, atx, ymax, ymin, ymax, ticks, miniticks, labels, logbase, arrow_start, arrow_end, exclude, tattr, **attr)
3402 xaxis = XAxis(self.xmin, self.xmax, aty, self.xticks, self.xminiticks, self.xlabels, self.xlogbase, xarrow_start, xarrow_end, exclude=xexclude, text_attr=self.text_attr, **self.attr).SVG(trans)
3403 yaxis = YAxis(self.ymin, self.ymax, atx, self.yticks, self.yminiticks, self.ylabels, self.ylogbase, yarrow_start, yarrow_end, exclude=yexclude, text_attr=self.text_attr, **self.attr).SVG(trans)