Bryan Van de Ven

Results 762 comments of Bryan Van de Ven

hi @mourner just to provide some additional context. We had to implement a `search_apply` in https://github.com/bokeh/bokeh/pull/14340 ```typescript search_apply(minX: number, minY: number, maxX: number, maxY: number, nodeFunction: (index: number, node: Rect)...

I am not sure what the solution is. You can't just give a list that says "make the 2nd, 5th, an 10th" ticks bold, because panning, zooming, range changes, etc....

Also seeing lot (several pages) of these spurious false positives: e.g. https://github.com/bokeh/bokeh/security/code-scanning/339 Besides pep8 it's worth noting the Mypy docs explicitly demonstrate this usage for `@overload` specifically: https://mypy.readthedocs.io/en/stable/more_types.html#function-overloading

This certainly relates to the recent work in https://github.com/bokeh/bokeh/pull/14028 to make Legends be DOM elements rather than drawn on canvas. That change was made in order to meet certain requirements...

Since the actual property is a `NullStringSpec` then AFAIK we can just insert a call to `.array(source)` at some point to apply any expressions or transforms, the way glyph renderers...

@mattpap AFAIK there is not an existing open issue for the Python spline API?

@mattpap is your intention to just expose the existing BokehJS spline as-is? If so I am happy to make a PR for that considering how much you have on your...

@georgedimitriadis just an FYI, for large code blocks you can put triple-backticks ``` around before and after the entire code block, it will format better and is much easier than...

Right, themes only control the default values of the typed properties of Bokeh models, and there are not currently really any properties available to tweak the default tooltip layout. This...

FYI please check this works, I am not sure calling `rint` will be sufficient as it still (AFAIK) generates floating point values, that just happen to be integer values. But...