Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 532919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:27:18+00:00 2026-05-13T09:27:18+00:00

Anyone know how to draw a border around an individual subplot within a figure

  • 0

Anyone know how to draw a border around an individual subplot within a figure in matplotlib? I’m using pyplot.

eg:

import matplotlib.pyplot as plt
f = plt.figure()
ax1 = f.add_subplot(211)
ax2 = f.add_subplot(212)
# ax1.set_edgecolor('black')

..but Axes objects have no ‘edgecolor’, and I can’t seem to find a way to outline the plot from the figure level either.

I’m actually wrapping mpl code and adding a wx UI with controls that I would like to have context depending on which subplot is selected. i.e. User clicks on subplot within figure canvas — subplot is ‘selected’ (has an outline drawn around it, ideally sawtooth) — GUI updates to present controls to modify that specific subplot.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:27:18+00:00Added an answer on May 13, 2026 at 9:27 am

    You essentially want to draw outside of the axes, right?

    I adapted this from here. It would need clean up as I used some hard-coded “fudge-factors” in there.

    #!/usr/bin/env python
    from pylab import *
    
    def f(t):
        s1 = cos(2*pi*t)
        e1 = exp(-t)
        return multiply(s1,e1)
    
    t1 = arange(0.0, 5.0, 0.1)
    t2 = arange(0.0, 5.0, 0.02)
    t3 = arange(0.0, 2.0, 0.01)
    
    figure(figsize=(4, 4))
    sub1 = subplot(211)
    l = plot(t1, f(t1), 'bo', t2, f(t2), 'k--', markerfacecolor='green')
    grid(True)
    title('A tale of 2 subplots')
    ylabel('Damped oscillation')
    
    ## I ADDED THIS
    autoAxis = sub1.axis()
    rec = Rectangle((autoAxis[0]-0.7,autoAxis[2]-0.2),(autoAxis[1]-autoAxis[0])+1,(autoAxis[3]-autoAxis[2])+0.4,fill=False,lw=2)
    rec = sub1.add_patch(rec)
    rec.set_clip_on(False)
    
    subplot(212)
    plot(t3, cos(2*pi*t3), 'r.')
    grid(True)
    xlabel('time (s)')
    ylabel('Undamped')
    
    savefig('test.png')
    

    Produces:

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 411k
  • Answers 411k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You want to be careful when using a CopyOnWriteArrayList. The… May 15, 2026 at 7:41 am
  • Editorial Team
    Editorial Team added an answer The answer from @OMG Ponies is close to what I… May 15, 2026 at 7:41 am
  • Editorial Team
    Editorial Team added an answer No, there's a Big difference. COM has a well defined… May 15, 2026 at 7:41 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.