Mateusz Paprocki
Mateusz Paprocki
This is tentatively ready though there are two areas that need work: 1. [x] Type data specs. 2. [x] Fill in property mixins (`Include`).
This PR is now fully complete.
I started issue #14254 for statically typing glyph methods.
> But please add any helper scripts even if they are speculative I don't have any, I used vim macros and quite a bit of labor to do the conversion.
``` data = {"a": [1, 2, 3], "b": [3, 1, 2]} source = ColumnDataSource(data) fig.circle(source=source, x="a", y="b") ``` In 3.3 and earlier this would produce `Scatter` glyph, which has a...
If you start a PR, I can update the codebase.
This ```py style = InlineStyleSheet(css=""" :host(.custom_button_1) { z-index: 200; } """) ``` will work in some cases due to CSS specificity rules, but it will also break window stacking (`z-index`...
> Could you explain further? Sorry, I'm very new to coding and thought it's fine because you can close that window to view anything below it. `Dialog` sets `z-index` dynamically,...
There's no good way of testing this currently.
Any example with hover tool would do. The one from the issue is `examples/basic/scatter/color_scatter.py`: ```py import numpy as np from bokeh.plotting import figure, show N = 4000 x = np.random.random(size=N)...