Lev Maximov

Results 23 issues of Lev Maximov

It is not clear from the documentation or from the --help page which mode is the default one. I'd suggest either adding this into --help page: ``` - repren: Multi-pattern...

When table cell contents starts with a `+` an excess `+` is added to the line above: ``` | qwer | asdf | zxcv | |------+-+------+------| | er | +12345...

bug

### Bug summary When I transpose X, Y, and Z, the color of the surface changes from light blue to dark blue (other colors darken as well). ### Code for...

topic: mplot3d
topic: color/colorbar

v3 returns null token in dev mode, but the captcha field is required. Setting captcha value to arbitrary string fixes the error message "This field is required". As those are...

bug
status: needs review

Like described in the docs I omitted RECAPTCHA_PRIVATE_KEY and RECAPTCHA_PUBLIC_KEY from settings.py and added SILENCED_SYSTEM_CHECKS = ['captcha.recaptcha_test_key_error']. I'm getting "This field is required" message because the captcha field is left...

bug
recaptcha

I'm pretty sure it is not the best way to fix #159, but it works.

status: WIP

Is it possible for a BokehModel to stretch by width if there is an ipywidget sitting next to it? ![image](https://user-images.githubusercontent.com/170910/183375269-838df936-241f-4c0c-9120-81dd63b766d2.png) (`sizing_mode='stretch_width'` gives the same output)

``` python from jupyter_bokeh import BokehModel from bokeh.models import RadioGroup def update(event): print(event) LABELS = ["Option 1", "Option 2", "Option 3"] radio_group = RadioGroup(labels=LABELS, active=1) radio_group.on_click(update) BokehModel(radio_group) ``` After a...

The following sequence of commands leads to a strangely looking error message: ``` python from bokeh.io import output_notebook from bokeh.resources import Resources, INLINE from jupyter_bokeh import BokehModel from bokeh.plotting import...

Hi, The event callbacks registered before a call to `BokehModel` work fine: ``` python def f(event): print('hi') b = bm.Button() b.on_click(f) w = BokehModel(b) w ``` Is it possible to...

type: feature