Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions doc/users/prev_whats_new/whats_new_1.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,12 @@ that the draw command is deferred and only called once.
The upshot of this is that for interactive backends (including
``%matplotlib notebook``) in interactive mode (with ``plt.ion()``)

.. ipython :: python
.. code-block :: python

import matplotlib.pyplot as plt

fig, ax = plt.subplots()

ln, = ax.plot([0, 1, 4, 9, 16])

plt.show()

ln.set_color('g')


Expand Down