Open kwgoodman opened 14 years ago
I'd like to use ticks without labels. At the moment that is not possible:
>>> DataArray([1, 2], [(None, ('a', 'b'))]) <snip> ValueError: ticks only supported when Axis has a label
Well, it is possible:
>>> dar = DataArray([1, 2], [('tmp', ('a', 'b'))]) >>> dar.set_label(0, None) >>> dar.axes (Axis(label=None, index=0, ticks=('a', 'b')),)
I am not sure why this throws an exception, does anyone? The tests all pass if we remove this restriction.
I'd like to use ticks without labels. At the moment that is not possible:
Well, it is possible: