Remove frame and axes from plots

Issue #35 resolved
Juan Pablo Caram repo owner created an issue

Only the base axes should show a frame, grid and ticks.

Comments (1)

  1. Juan Pablo Caram reporter
    cirkuixobj.setup_axes():
       # ...
       self.axes.set_frame_on(False)  # No frame
       self.axes.set_xticks([])  # No tick
       self.axes.set_yticks([])  # No ticks
       self.axes.patch.set_visible(False)  # No background
       # ...
    
  2. Log in to comment