sebcbien 0 Newbie Poster

Hello everybody

I'm currently working on a project for visualizing spectrum acquisition.
I actually am unable to stretch the axes. The result is a poor representation:
http://farm3.static.flickr.com/2763/4505197080_b308ec603b_o.png
The time axis is not expanded as I'd like to which make a slim 3D representation.

This is my code used to draw this figure:

s = mlab.surf(wavelength, time, values,warp_scale = 'auto')
        mlab.axes(extent = [wavelength.min(),wavelength.max(),time.min(),time.max(),values.min(),values.max()],nb_labels = 10)

I did try to put mlab.axes() first but didn't change a single thing. Do you have any idea to make it look better, or a way to extend the surface properly?

Thank you in advance for your help !