Bokeh 矩形、椭圆和多边形
可以在Bokeh图中渲染 矩形、椭圆和多边形 。Figure类的 rect()方法 根据中心的x和y坐标、宽度和高度添加一个矩形字形。另一方面,square()方法有尺寸参数来决定尺寸。
ellipse()和oval()方法添加了一个椭圆和椭圆字形。它们使用与rect()类似的签名,有x、y、w和h参数。此外,角度参数决定了从水平方向的旋转。
例子
下面的代码显示了不同 形状的字形方法 的使用:
from bokeh.plotting import figure, output_file, show
fig = figure(plot_width = 300, plot_height = 300)
fig.rect(x = 10,y = 10,width = 100, height = 50, width_units = 'screen', height_units = 'screen')
fig.square(x = 2,y = 3,size = 80, color = 'red')
fig.ellipse(x = 7,y = 6, width = 30, height = 10, fill_color = None, line_width = 2)
fig.oval(x = 6,y = 6,width = 2, height = 1, angle = -0.4)
show(fig)
输出