Home | History | Annotate | Download | only in ignition

Lines Matching refs:axis

137   # Reverse y axis for a nicer appearance
145 def plot_dispatches_table(dispatches_table, figure, axis):
148 image = axis.pcolor(
157 axis.xaxis.set(
161 axis.xaxis.tick_top()
162 axis.set_xlim(0, len(xlabels))
163 axis.set_xticklabels(xlabels, rotation="vertical")
165 axis.yaxis.set(
170 axis.set_ylim(0, len(ylabels))
174 ax=axis,
260 figure, axis = pyplot.subplots()
261 plot_dispatches_table(dispatches_table, figure, axis)