On Wed, Aug 4, 2010 at 12:11 AM, Benjamin Root wrote:
> I have done some further research on this, and it appears to be a bug of
> some sort. Possibly the Locators are already made by the time the
> ax.set_xticks([]) is called and that function falls on deaf ears because the
> real xaxis is actua
On Mon, Jun 14, 2010 at 2:14 AM, Ola Skavhaug wrote:
> On Fri, Jun 11, 2010 at 4:50 PM, Benjamin Root wrote:
> > Ola,
> >
> > Just to make sure, have you tried "ax.set_xticks([])"?
>
> Yes, I have tried that, but without success. Looks like the tick-logic
> is overridden for 3d plotting. Or at l
Bump.
Is this possible using mplot3d?? I would, also like to turn off the ticks
and the tick labels.
skavhaug wrote:
>
> On Fri, Jun 11, 2010 at 4:50 PM, Benjamin Root wrote:
>> Ola,
>>
>> Just to make sure, have you tried "ax.set_xticks([])"?
>
> Yes, I have tried that, but without success
On Fri, Jun 11, 2010 at 4:50 PM, Benjamin Root wrote:
> Ola,
>
> Just to make sure, have you tried "ax.set_xticks([])"?
Yes, I have tried that, but without success. Looks like the tick-logic
is overridden for 3d plotting. Or at least, I cannot figure out how it
works.
Ola
> Ben Root
>
>
>
> On
Ola,
Just to make sure, have you tried "ax.set_xticks([])"?
Ben Root
On Fri, Jun 11, 2010 at 3:05 AM, Ola Skavhaug wrote:
> Hi,
>
> I'm trying to remove the xtickmarks and ytickmarks from a 3d plot,
> without any success.
>
> The example I experiment with is the following:
>
> from mpl_toolk
Hi,
I'm trying to remove the xtickmarks and ytickmarks from a 3d plot,
without any success.
The example I experiment with is the following:
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
fig = plt.figure()
ax = axes3d.Axes3D(fig)
X, Y, Z = axes3d.get_test_data(0.05)
cse