Marc

Results 135 comments of Marc

@hareyakana You can manually give the tick labels as an argument to `tax.ticks(ticks=[])` to change the default labeling order. If you need something other than the two orientations for some...

@jamesafoster that's bizarre. I'm glad there is a workaround for now. My guess is that various combinations of mpl backend and version trigger events differently, and so sometimes label drawing...

If either of you can check the github master branch that would be most appreciated. If it's fixed I'll push a new pypi version.

Ok, thanks. Unfortunately I still cannot reproduce the issue, so for now you'll have to call `_redraw_labels()` manually.

I just resize the window after plotting until the spacing looks right; you can also set the image size before calling `pyplot.savefig()`. Unfortunately this isn't something that is easy to...

I don't recall anything like that, but some of the `ternary` methods do take an offset parameter that should move the labels outward a bit. Resizing the image window after...

Let us know if you find anything useful. This is something the library could probably handle better.

For now my recommendation is to use _redraw_labels(). Unfortunately we're not also wrapping `fig` because the solution in that case would be to override `savefig` to always redraw first. And...

There is [an example](https://github.com/marcharper/python-ternary/blob/master/examples/custom_axis_scaling.py) of using custom tick marks in the examples directory.

In this specific case the arguments are truly optional since the strategy generates a random set of parameters (given the seed) if a non-sufficient set of arguments is given. If...