I’m trying to use some line properties for very simple line plots, like in the “single line example” in the Getting Started section here: http://bokeh.pydata.org/en/latest/docs/quickstart.html, but even adding only line_join=‘round’ to p.line(…) in that example does not have the intended effect (or any effect whatsoever). Are these properties working only on glyphs? And if so, how can I achieve the desired effect on a line in a figure?
You've uncovered a small bug specifically with respect to "line_join" (you can seem almost all the other properties demonstrated working throughout the docs, but you may be the first person to need to actually use "line_join") The bug is here:
We are all right in the middle of the 0.10 release process and currently pretty swamped. If you'd like to make a GitHub issue and submit a Pull Request with this fix I can confidently say it would be in the next release, and even in the first dev build release after 0.10 is out.
I'm trying to use some line properties for very simple line plots, like in the "single line example" in the Getting Started section here: http://bokeh.pydata.org/en/latest/docs/quickstart.html, but even adding only line_join='round' to p.line(...) in that example does not have the intended effect (or any effect whatsoever). Are these properties working only on glyphs? And if so, how can I achieve the desired effect on a line in a figure?
So, if you'd like to contribute the one-line PR to fix this, that would be great!
Bryan
···
On Sep 21, 2015, at 8:38 AM, Bryan Van de Ven <[email protected]> wrote:
You've uncovered a small bug specifically with respect to "line_join" (you can seem almost all the other properties demonstrated working throughout the docs, but you may be the first person to need to actually use "line_join") The bug is here:
We are all right in the middle of the 0.10 release process and currently pretty swamped. If you'd like to make a GitHub issue and submit a Pull Request with this fix I can confidently say it would be in the next release, and even in the first dev build release after 0.10 is out.
I'm trying to use some line properties for very simple line plots, like in the "single line example" in the Getting Started section here: http://bokeh.pydata.org/en/latest/docs/quickstart.html, but even adding only line_join='round' to p.line(...) in that example does not have the intended effect (or any effect whatsoever). Are these properties working only on glyphs? And if so, how can I achieve the desired effect on a line in a figure?
I can't say I have any strong opinions about what the best default is. Maybe ping the GH issue with this question we can see what other people think. Do you know what the behviour of other libraries is in this regard?