Can I make matplotlib sliders more discrete?
I'm using matplotlib sliders, similar to this demo . The sliders currently use 2 decimal places and 'feel' quite continuous (though they have to be discrete on some level). Can I decide on what level they are discrete? Integer steps? 0.1-sized steps? 0.5? My google-fu failed me. Joe Kington If you just want integer values, just pass in an approriate valfmt when you create the slider (e.g. valfmt='%0.0f' ) However, if you want non-integer invervals, you'll need to manually set the text value each time. Even if you do this, though, the slider will still progress smoothly, and it won't "feel"