René's URL Explorer Experiment


Title: [Bug]: Zoom not working matplotlib.backends.backend_wxagg.NavigationToolbar2WxAgg · Issue #26857 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: Zoom not working matplotlib.backends.backend_wxagg.NavigationToolbar2WxAgg · Issue #26857 · matplotlib/matplotlib

X Title: [Bug]: Zoom not working matplotlib.backends.backend_wxagg.NavigationToolbar2WxAgg · Issue #26857 · matplotlib/matplotlib

Description: Bug summary When running the "Embedding in wx #2", code from the matplotlib documentation (https://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.html), the zoom function in the toolbar does not make a square and t...

Open Graph Description: Bug summary When running the "Embedding in wx #2", code from the matplotlib documentation (https://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.html), the zoom function in ...

X Description: Bug summary When running the "Embedding in wx #2", code from the matplotlib documentation (https://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.html), the zoom fu...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/26857

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: Zoom not working matplotlib.backends.backend_wxagg.NavigationToolbar2WxAgg","articleBody":"### Bug summary\n\nWhen running  the \"Embedding in wx #2\", code from the matplotlib documentation (https://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.html), the zoom function in the toolbar does not make a square and throws error:\r\n\r\nFile \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\n\n### Code for reproduction\n\n```python\nimport wx\r\nimport wx.lib.mixins.inspection as WIT\r\n\r\nimport numpy as np\r\n\r\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\r\nfrom matplotlib.backends.backend_wxagg import \\\r\n    NavigationToolbar2WxAgg as NavigationToolbar\r\nfrom matplotlib.figure import Figure\r\n\r\n\r\nclass CanvasFrame(wx.Frame):\r\n    def __init__(self):\r\n        super().__init__(None, -1, 'CanvasFrame', size=(550, 350))\r\n\r\n        self.figure = Figure()\r\n        self.axes = self.figure.add_subplot()\r\n        t = np.arange(0.0, 3.0, 0.01)\r\n        s = np.sin(2 * np.pi * t)\r\n\r\n        self.axes.plot(t, s)\r\n        self.canvas = FigureCanvas(self, -1, self.figure)\r\n\r\n        self.sizer = wx.BoxSizer(wx.VERTICAL)\r\n        self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.EXPAND)\r\n        self.SetSizer(self.sizer)\r\n        self.Fit()\r\n\r\n        self.add_toolbar()  # comment this out for no toolbar\r\n\r\n    def add_toolbar(self):\r\n        self.toolbar = NavigationToolbar(self.canvas)\r\n        self.toolbar.Realize()\r\n        # By adding toolbar in sizer, we are able to put it at the bottom\r\n        # of the frame - so appearance is closer to GTK version.\r\n        self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\r\n        # update the axes menu on the toolbar\r\n        self.toolbar.update()\r\n\r\n\r\n# Alternatively you could use:\r\n# class App(wx.App):\r\nclass App(WIT.InspectableApp):\r\n    def OnInit(self):\r\n        \"\"\"Create the main window and insert the custom frame.\"\"\"\r\n        self.Init()\r\n        frame = CanvasFrame()\r\n        frame.Show(True)\r\n\r\n        return True\r\n\r\n\r\nif __name__ == \"__main__\":\r\n    app = App()\r\n    app.MainLoop()\n```\n\n\n### Actual outcome\n\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\r\nTraceback (most recent call last):\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 655, in _onPaint\r\n    self.gui_repaint(drawDC=drawDC)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/_api/deprecation.py\", line 386, in wrapper\r\n    return func(*inner_args, **inner_kwargs)\r\n  File \"/usr/lib/python3/dist-packages/matplotlib/backends/backend_wx.py\", line 622, in gui_repaint\r\n    drawDC.DrawLineList(\r\n  File \"/usr/lib/python3/dist-packages/wx/core.py\", line 1098, in _DC_DrawLineList\r\n    return self._DrawLineList(lines, pens, [])\r\nTypeError: 'numpy.float64' object cannot be interpreted as an integer\n\n### Expected outcome\n\nExpected zoom to work as a normal matplotlib plot.\n\n### Additional information\n\nI assume the code worked in a earlier version since the script was taken directly from the matplotlib documentation.\r\n\r\nI installed wxPython using synaptic: \r\n\r\npython3-wxgtk4.0 v\r\n\r\nversion: python3-wxgtk4.0\n\n### Operating system\n\n Ubuntu 22.04.3 LTS, release 22.04\n\n### Matplotlib Version\n\n3.5.1\n\n### Matplotlib Backend\n\nTkAgg\n\n### Python version\n\nPython 3.10.12\n\n### Jupyter version\n\n4.0.5\n\n### Installation\n\npip","author":{"url":"https://github.com/EirikJaccheri","@type":"Person","name":"EirikJaccheri"},"datePublished":"2023-09-21T13:22:31.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/26857/matplotlib/issues/26857"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:442e4187-9a7a-fbc7-4d82-07b79880d8c2
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idEBB4:1D428F:E80EF2:13BFBE0:6A5203A6
html-safe-nonce3055830f358c7d7dd1785abe08690a18523fc47f8ab6665bcc2ce0dce6242696
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFQkI0OjFENDI4RjpFODBFRjI6MTNCRkJFMDo2QTUyMDNBNiIsInZpc2l0b3JfaWQiOiI0ODMxNzc3ODIyNTQzNTc4MDIyIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmace9c30214c7f372cf5cfaf6c5bd9e261f6e1c26bf121306ba511dc83671f8b555
hovercard-subject-tagissue:1906978228
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/26857/issue_layout
twitter:imagehttps://opengraph.githubassets.com/29c262a5d0792c68396a0e6292f1ce7db2658574830535d49ba49860a8e1f0b4/matplotlib/matplotlib/issues/26857
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/29c262a5d0792c68396a0e6292f1ce7db2658574830535d49ba49860a8e1f0b4/matplotlib/matplotlib/issues/26857
og:image:altBug summary When running the "Embedding in wx #2", code from the matplotlib documentation (https://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.html), the zoom function in ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameEirikJaccheri
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7aed05249554b889eb33d002851a973eebcc7e91
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/26857#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F26857
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F26857
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/26857
Reloadhttps://github.com/matplotlib/matplotlib/issues/26857
Reloadhttps://github.com/matplotlib/matplotlib/issues/26857
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/26857
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/26857
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 409 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
[Bug]: Zoom not working matplotlib.backends.backend_wxagg.NavigationToolbar2WxAgghttps://github.com/matplotlib/matplotlib/issues/26857#top
https://github.com/EirikJaccheri
EirikJaccherihttps://github.com/EirikJaccheri
on Sep 21, 2023https://github.com/matplotlib/matplotlib/issues/26857#issue-1906978228
#2https://github.com/matplotlib/matplotlib/pull/2
https://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.htmlhttps://matplotlib.org/stable/gallery/user_interfaces/embedding_in_wx2_sgskip.html
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.