2017-04-23 10 views
0

Bokeh 서버에서 렌더러의 색상과 선 너비를 업데이트 할 수 있지만 '크기'를 업데이트하려고하면 아무 일도 발생하지 않습니다. 색상 상자에 색상 (검정색, 녹색, 파란색 등)을 입력 할 수 있으며 렌더러는 색상을 변경합니다. 이 문제를 테스트하기 위해 sliders.py 예제를 수정했습니다. 코드는 다음과 같습니다. update_size 메서드에서 glyph.size를 glyph.line_width로 변경하면 선이 너비를 업데이트하지만 "크기"를 사용하면 아무 일도 발생하지 않습니다. 파이썬 2.7.12, 우분투 16.04, bokeh 서버 0.12.5 및 토네이도 4.4.2를 사용하고 있습니다. 도와 주셔서 감사합니다.Bokeh 서버를 사용하여 렌더러 (예 : 원, 삼각형 등) 크기를 대화식으로 업데이트 할 수 없습니다.

import numpy as np 
from bokeh.io import curdoc 
from bokeh.layouts import row, widgetbox 
from bokeh.models import ColumnDataSource 
from bokeh.models.widgets import Slider, TextInput 
from bokeh.plotting import figure 

# Set up data 
N = 200 
x = np.linspace(0, 4*np.pi, N) 
y = np.sin(x) 
source = ColumnDataSource(data=dict(x=x, y=y)) 

# Set up widgets 
text = TextInput(title="title", value='my sine wave') 
text2 = TextInput(title="size", value='6') 
text3 = TextInput(title="color", value='red') 
offset = Slider(title="offset", value=0.0, start=-5.0, end=5.0, step=0.1) 
amplitude = Slider(title="amplitude", value=1.0, start=-5.0, end=5.0) 
phase = Slider(title="phase", value=0.0, start=0.0, end=2*np.pi) 
freq = Slider(title="frequency", value=1.0, start=0.1, end=5.1) 

# Set up plot 
plot = figure(plot_height=400, plot_width=400, title="my sine wave", 
       tools="crosshair,pan,reset,save,wheel_zoom", 
       x_range=[0, 4*np.pi], y_range=[-2.5, 2.5]) 

r = plot.circle('x', 'y', source=source, size=int(text2.value), line_alpha=0.6, color = text3.value, legend = 'test') 
glyph = r.glyph 

# Set up callbacks 
def update_title(attrname, old, new): 
    plot.title.text = text.value 

text.on_change('value', update_title) 

def update_size(attrname, old, new): 
    glyph.size = int(text2.value)  

text2.on_change('value', update_size) 

def update_color(attrname, old, new): 
    glyph.fill_color = text3.value 


text3.on_change('value', update_color) 

def update_data(attrname, old, new): 

    # Get the current slider values 
    a = amplitude.value 
    b = offset.value 
    w = phase.value 
    k = freq.value 

    # Generate the new curve 
    x = np.linspace(0, 4*np.pi, N) 
    y = a*np.sin(k*x + w) + b 

    source.data = dict(x=x, y=y) 

for w in [offset, amplitude, phase, freq]: 
    w.on_change('value', update_data) 


# Set up layouts and add to document 
inputs = widgetbox(text, text2, text3, offset, amplitude, phase, freq) 
plot.legend.location = "top_left" 
plot.legend.click_policy="hide" 
curdoc().add_root(row(inputs, plot, width=800)) 
curdoc().title = "Sliders" 

답변

0

크기를 변경하면 아무런 변화가 없습니다. 그러나 나중에 다른 변경 (예 : 슬라이더 중 하나 제거)을 수행하면 크기가 업데이트되므로 이는 일종의 버그입니다. 나는 GitHub의 문제 제기 좋을 것 다음 CDS의 크기를 저장, 그 동안

http://github.com/bokeh/bokeh/issues

하면 문제를 해결 작동합니다

# Set up data 
N = 200 
x = np.linspace(0, 4*np.pi, N) 
y = np.sin(x) 
s = np.ones_like(y) * 6 
source = ColumnDataSource(data=dict(x=x, y=y, size=s)) 

그런 다음 글리프 호출 크기 열을 사용 :

r = plot.circle('x', 'y', size='size', source=source, 
       line_alpha=0.6, color = text3.value, legend = 'test') 

마지막으로 대신 소스를 업데이트하기 위해 콜백을 변경

def update_size(attrname, old, new): 
    source.data['size'] = np.ones_like(y) * int(text2.value) 
+0

멋진 수정! 그동안 버그를 github에 게시했습니다. – cuxcrider