Andrew Pikul
Andrew Pikul
Hey @pklaus , thanks for all the incredible work. It works very well. I noticed that I can print in red _or_ black depending on which `-l 62red` (red) or...
https://github.com/pseudomuto/protoc-gen-doc/issues/366 Newlines destroy table formatting unless they are html line breaks. This fix makes a conversion using the swig "replace" function. @pseudomuto because I don't know who else to tag.
In my build script, I'm `sed`ing the current file post compilation from: `require("../../path/to/X_pb")` --> `require("./X_pb")` Feels like a hack! Is there a better way (while still running the `protoc` command...
Hi, this PR adds a `--local=` flag to `setup.py updateplotlyjsdev` so we don't need to use circleci to use our custom plotly.js w/ plotly.py. This helps a little bit with...
**EDIT: if this is just an issue of it not being clarified in the docs, clarify it for me here and I will do the suggest thing in the docs...
https://github.com/plotly/plotly.js/issues/6890 Breakdown of the fix: `ax._depth` is not calculated properly in the `standoff` conditional: https://github.com/plotly/plotly.js/blob/5025fbc75b636a02d16320e7b4ff054f1fe6c301/src/plots/cartesian/axes.js#L2647-L2651 Lots of positioning calculations rely on that `getLabelLevelBbox()` which, bypassing the cache, is this: ```javascript...
Fix: https://github.com/plotly/plotly.js/pull/6889 Back to building other features soon, but this bug interfered with a pozo release... Mocks to show the error are over here: https://github.com/geopozo/plotly.js/commit/fbb56f3261ea29478375c10930c915f0c75d1cff If you set a `standoff`...
For https://github.com/plotly/plotly.js/issues/6824: The basic idea is that we create a mode called 'proportional' which is equivelent to 'array' but values are mapped from proportions before drawn. ~Then again, array doesn't...
### What Add a new tick mode: ``` # Usage: xaxis: { tickmode: 'proportional', tickvals: [0, .5, 1], } ``` **Effect:** Plotly will make ticks propotional to the range: So...
I'd like to be able to reformat tick text after it's be generated. This is so, along with `hovertext`, I can change the *perceived units* of a graph without having...