tensorwatch/mpl/bar_plot.py [30:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        stream_vis.opacity = opacity
        stream_vis.ax.set_xlabel(xtitle)
        stream_vis.ax.xaxis.label.set_style('italic')
        stream_vis.ax.set_ylabel(ytitle)
        stream_vis.ax.yaxis.label.set_color(color)
        stream_vis.ax.yaxis.label.set_style('italic')
        if self.is_3d:
            stream_vis.ax.set_zlabel(ztitle)
            stream_vis.ax.zaxis.label.set_style('italic')

    def is_show_grid(self): #override
        return False

    def clear_artists(self, stream_vis):
        for bar in stream_vis.bars_artists:
            bar.remove()
        stream_vis.bars_artists.clear()

    def clear_plot(self, stream_vis, clear_history):
        stream_vis.series.clear()
        self.clear_artists(stream_vis)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tensorwatch/mpl/histogram.py [28:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        stream_vis.opacity = opacity
        stream_vis.ax.set_xlabel(xtitle)
        stream_vis.ax.xaxis.label.set_style('italic')
        stream_vis.ax.set_ylabel(ytitle)
        stream_vis.ax.yaxis.label.set_color(color)
        stream_vis.ax.yaxis.label.set_style('italic')
        if self.is_3d:
            stream_vis.ax.set_zlabel(ztitle)
            stream_vis.ax.zaxis.label.set_style('italic')

    def is_show_grid(self): #override
        return False

    def clear_artists(self, stream_vis):
        for bar in stream_vis.bars_artists:
            bar.remove()
        stream_vis.bars_artists.clear()

    def clear_plot(self, stream_vis, clear_history):
        stream_vis.series.clear()
        self.clear_artists(stream_vis)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



