Re: [Matplotlib-users] display of x-axis ticks and labels

2011-12-06 Thread Sven Duscha
>>> Sven Duscha 12/06/11 4:50 PM >>> On Dec 6, 2011, at 4:34 PM, Till Stensitzki wrote: > I think you have to plot something, else matplotlib don't know where to draw the > ticks. Thankfully that got solved; I had an additional self.ax1.get_xaxis().set_visible(False) somewhere in my code.

Re: [Matplotlib-users] display of x-axis ticks and labels

2011-12-06 Thread Sven Duscha
On Dec 6, 2011, at 4:34 PM, Till Stensitzki wrote: > I think you have to plot something, else matplotlib don't know where to draw > the > ticks. I do plot data, both with .scatter and .plot. The data is plotted perfectly fine, just without any xaxis marks. The whole source code of the appli

Re: [Matplotlib-users] display of x-axis ticks and labels

2011-12-06 Thread Till Stensitzki
I think you have to plot something, else matplotlib don't know where to draw the ticks. -- Cloud Services Checklist: Pricing and Packaging Optimization This white paper is intended to serve as a reference, checklist

[Matplotlib-users] display of x-axis ticks and labels

2011-12-06 Thread Sven Duscha
Hi, I am writing a small plotting GUI using Matplotlib 1.0.1 and QT4.6. Essentially I need interaction with the GUI, in order to sett plotted parameters and plotting limits. This means that I have to set up a figure in a canvas environment in order to use it in QT - at least that is what I ga