PyPlot updates from Oliver Schoenborn:

- Factored out "draw command" so extensions easier to implement: clean
      separation b/w user's "draw" (Draw) and internal "draw" (_draw)
    - Added ability to define your own ticks at PlotCanvas.Draw
    - Added better bar charts: PolyBar class and getBarTicksGen()
    - Put legend writing for a Poly* into Poly* class where it belongs
    - If no legend specified or exists, no gap created


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30293 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-11-05 18:38:04 +00:00
parent 1c7da10ebf
commit ecf0b9f982
2 changed files with 491 additions and 120 deletions

View File

@@ -192,6 +192,14 @@ it.
wxPython on OSX can now be built in Unicode mode, can support multiple
version installs, and comes with an uninstaller script.
PyPlot updates from Oliver Schoenborn:
- Factored out "draw command" so extensions easier to implement: clean
separation b/w user's "draw" (Draw) and internal "draw" (_draw)
- Added ability to define your own ticks at PlotCanvas.Draw
- Added better bar charts: PolyBar class and getBarTicksGen()
- Put legend writing for a Poly* into Poly* class where it belongs
- If no legend specified or exists, no gap created