koaning / bulk

A Simple Bulk Labelling Tool
MIT License
552 stars 47 forks source link

Bulk text compatibility with Bokeh > 3.0.0. #71

Open anastazie opened 3 months ago

anastazie commented 3 months ago

Hello, thank you for the wonderful tool! I tried to edit it a bit and found that for bulk text compatibility with Bokeh > 3.0.0. can be achieved by changing size parameter in scatter to radius.

Example:

circle_kwargs = {
            "x": "x",
            "y": "y",
            "radius": 0.1,
            "source": source_orig,
            "alpha": "alpha",
        }