Eric Firing writes:
>
>
> If x,y don't change, and if you are not using masked arrays, then you
> might be able to add something like this:
>
> self.plots3.set_array(np.transpose(z).ravel())
> self.plots3.autoscale()
> self.figure.canvas.draw()
>
> The colorbar ran
feldmaus wrote:
> Hi All,
>
> The User of my program should use a slider element which lets compute
> x,y and z and then my colorbar should also be updated with the new
> computed x,y, and z values.
>
> How to do this ?
>
> There is a set_colorbar() method, but i dont know how to use it.
> I als
Hi All,
The User of my program should use a slider element which lets compute
x,y and z and then my colorbar should also be updated with the new
computed x,y, and z values.
How to do this ?
There is a set_colorbar() method, but i dont know how to use it.
I also found a set_axes() method.
Here