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 6348775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:29:17+00:00 2026-05-24T21:29:17+00:00

I used sliders in matplotlib to update a few graphs based on GUI input.

  • 0

I used sliders in matplotlib to update a few graphs based on GUI input.
All my graphs update well.
But when I use figtext, I have the problem that the updated text will write over the existing one.

import numpy as np
import pylab as p
from matplotlib.widgets import Slider

p.subplot(111) 
x = np.arange(0,500,1)
f = np.sin(x/100.0)
l11, = p.plot(f)

ax = p.axes([0.25, 0.05, 0.7, 0.03], axisbg='lightgoldenrodyellow')
slider1 = Slider(ax, 'amplitude', -1.0, 1.5, valinit=0)

def update(val):
    f = slider1.val * np.sin(x/100.0)
    l11.set_ydata(f)
    np.set_printoptions(precision=2)
    p.figtext(0.5, 0.65,  str(slider1.val) )
    p.draw()

slider1.on_changed(update)
p.show()
  • 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-24T21:29:18+00:00Added an answer on May 24, 2026 at 9:29 pm

    Every time you call p.figtext(0.5, 0.65, str(slider1.val)) you are creating a new Text object which is being written on top of the previous ones. What you should do is save a reference to the first Text object and update its contents by calling its set_text() method. I have updated your code with a working example.

    import numpy as np
    import pylab as p
    from matplotlib.widgets import Slider
    
    p.subplot(111) 
    x = np.arange(0,500,1)
    f = np.sin(x/100.0)
    l11, = p.plot(f)
    
    ax = p.axes([0.25, 0.05, 0.7, 0.03], axisbg='lightgoldenrodyellow')
    slider1 = Slider(ax, 'amplitude', -1.0, 1.5, valinit=0)
    
    # the text on the figure
    fig_text = p.figtext(0.5, 0.65,  str(slider1.val))
    
    def update(val):
        f = slider1.val*np.sin(x/100.0)
        l11.set_ydata(f)
        np.set_printoptions(precision=2)
    
        # update the value of the Text object
        fig_text.set_text(str(slider1.val))
    
        p.draw()
    
    slider1.on_changed(update)
    p.show()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have used the coin slider in my application.But the coin slider is restricted
Something really basic here I fear. Have three sliders used to control the colour
I have an app which uses two sliders to generate a product used elsewhere
I have used few Jqueries on my home page for sliding Images, Tabs and
I'm not used to work with jQuery, but I thought to use the easyslider
I have this menu structure that is used to navigate through content slider panels.
I used to work in a place where a common practice was to use
We used to use SourceSafe, and one thing I liked about it was that
I've used animatedcollapse for my div sliders with no flaws. However, I now need
I have never used a CMS before nor have I built a E-commerce site

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.