Bokeh EditTools callback to server
问题 I am trying to understand how to use callbacks for the new Bokeh EditTools (e.g. BoxEditTool or similar). Specifically, I would like to see on the server side the coordinates of the newly added rectangles, but I am not sure how to do this. I am running the following server app def app( curdoc ): TOOLS = "tap" p = figure(title="Some Figure", tools=TOOLS) source = ColumnDataSource( {'xs':[1], 'ys':[1], 'width':[.1],'height':[.1]}) r = p.rect('xs','ys','width','height', source=source) p.add