Changes between Version 11 and Version 12 of AsapFaq


Ignore:
Timestamp:
05/07/09 10:42:48 (15 years ago)
Author:
Malte Marquarding
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AsapFaq

    v11 v12  
    3131fig = plotter._plotter.figure
    3232}}}
    33 Then follow the documentation on matplotlib.
     33Then follow the documentation on matplotlib, e.g. to display the y-axis in log scale:
     34{{{
     35fig.gca().set_yscale("log")
     36fig.show()
     37}}}
     38
     39