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

  • Home
  • SEARCH
  • 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 8617259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:48:46+00:00 2026-06-12T05:48:46+00:00

Is there a way in matplotlib and Python to return the value/label clicked in

  • 0

Is there a way in matplotlib and Python to return the value/label clicked in a pie chart. For example if user clicks on sliver A of pie chart, return value A. If user clicks on sliver B of B pie chart, return value B.

  • 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-06-12T05:48:47+00:00Added an answer on June 12, 2026 at 5:48 am
    from matplotlib import pyplot as plt
    # make a square figure and axes
    plt.figure(figsize=(6,6))
    ax = plt.axes([0.1, 0.1, 0.8, 0.8])
    
    labels = 'Frogs', 'Hogs', 'Dogs', 'Logs'
    fracs = [15,30,45, 10]
    
    explode=(0, 0.05, 0, 0)
    p = plt.pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%', shadow=True)
    plt.title('Raining Hogs and Dogs', bbox={'facecolor':'0.8', 'pad':5})
    
    w = p[0][0]
    plt.show() 
    
    class PieEventHandler:
        def __init__(self,p):
            self.p = p
            self.fig = p[0].figure
            self.ax = p[0].axes
            self.fig.canvas.mpl_connect('button_press_event', self.onpress)
    
        def onpress(self, event):
            if event.inaxes!=self.ax:
                return
    
            for w in self.p:
                (hit,_) = w.contains(event)
                if hit:
                    print w.get_label()
    
    
    handler = PieEventHandler(p[0])
    

    references:

    Color values in imshow for matplotlib?

    http://matplotlib.org/examples/pylab_examples/pie_demo.html

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

Sidebar

Related Questions

Is there a way to render a 3D pie in matplotlib, or is there
For a simple plot below, is there a way to make matplotlib populate the
Possible Duplicate: Is there a way of drawing a caption box in matplotlib Is
Is there a way to whiten out the background of the axis label so
Is there a way to turn of the grid for polar plots in matplotlib?
Possible Duplicate: Is there a way of drawing a caption box in matplotlib I
In matplotlib, is there a simple way of plotting a figure without interrupting the
is there a way to print a plot from matplotlib,either with a command or
I'd like to make a generic value -vs- time plot with python's matplotlib module.
Is there way to get file from windows xp command prompt? I tried to

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.