1
正如你所見,here,我在同一行有兩個圖。我需要根據屏幕大小縮放整行,但要保持繪圖長度比。根據屏幕縮放散景
我嘗試了參數:sizing_mode = 'scale width'
,但它不起作用,因爲它會改變圖的高度。
p1 = figure(plot_width=NewRanges_Row1[0], plot_height=height, tools=[hover1, TOOLS], title="CHROMOSOME_1",
toolbar_location="above", responsive = True)
p1.circle('x1', 'y1', fill_color=chromosome1_colors, line_color=chromosome1_colors,
fill_alpha=chromosome1_transparency, size=7, source=source1)
p2 = figure(plot_width=NewRanges_Row1[1], plot_height=height, tools=[hover22, TOOLS], title="CHROMOSOME_22")
p2.circle('x22', 'y22', fill_color=chromosome22_colors, line_color=chromosome22_colors,
fill_alpha=chromosome22_transparency, size=7, source=source22)
凡P1是排第一的情節,和P2是排第二的情節。
有沒有辦法根據屏幕尺寸自動縮放散景圖,同時保持同一行的寬度比例?