(self, *args)
| 69 | print("leave---") |
| 70 | |
| 71 | def add_subplot(self, *args): |
| 72 | num_axes = sum(args) |
| 73 | for i, ratio in enumerate(args): |
| 74 | if i > 0: |
| 75 | plt.subplot2grid((num_axes, 1), (sum(args[:i]), 0), |
| 76 | rowspan = ratio, sharex = self.fig.axes[0]) |
| 77 | else: |
| 78 | plt.subplot2grid((num_axes, 1), (sum(args[:i]), 0), rowspan = ratio) |
| 79 | |
| 80 | #self.slider = mwidgets.Slider(xslider, "slider", '', 0, len(price_data), len(price_data), len(price_data)/100, "%d") |
| 81 | ##kwindow.on_changed(observer_slider) |
| 82 | ##observer_slider.on_changed(kwindow) |
| 83 | #signal = SignalWindow(axk, zip(zip(entry_x,entry_y),zip(exit_x,exit_y)), colors, slw) |
| 84 | |
| 85 | |
| 86 | def subplots_adjust(self, left, bottom, right, top, wspace=None, hspace=None): |
no outgoing calls
no test coverage detected