Hi,

I've lost touch with the state of mpl and starting to use it again. Apparently 
some of the gallery examples in 3D aren't working, but I think I found a 
workaround.

However, is there a way to get 3D bar charts with semilog style (e.g. 
logarithmic x-axis?)

Right now, I have:

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np

<snip>
prepare data
</snip>
for size, val, timepoint in zip(tdata[::2], tdata[1::2], timepoints):
        cs = ['b'] * len(size)
        ax.bar(size, val, zs = timepoint, zdir = 'y', color=cs, alpha=0.8)

as modified from one example I've found. Looks fine, except that the x-axis has 
to be logarithmic to make sense (data were sampled this way).

TIA,
Christian


-- 
NEU: FreePhone - kostenlos mobil telefonieren und surfen!                       
Jetzt informieren: http://www.gmx.net/de/go/freephone

------------------------------------------------------------------------------
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to