图形对象有许多方法,可以使用这些方法绘制不同形状(如圆形、矩形、多边形等)的矢量化字形。
以下方法可用于绘制圆形字形 -
circle()circle()
方法为图形添加一个圆形字形,并需要其中心的 x 和 y 坐标。此外,它可以借助诸如填充颜色、线条颜色、线条宽度等参数进行配置。
circle_cross()
circle_cross() 方法通过中心添加带有“+”十字的圆形字形。
circle_x()circle_x()
方法通过中心添加带有“X”十字的圆。
例子
以下示例显示了添加到散景图中的各种圆形字形的使用 -
from bokeh.plotting import figure, output_file, show
plot = figure(plot_width = 300, plot_height = 300)
plot.circle(x = [1, 2, 3], y = [3,7,5], size = 20, fill_color = 'red')
plot.circle_cross(x = [2,4,6], y = [5,8,9], size = 20, fill_color = 'blue',fill_alpha = 0.2, line_width = 2)
plot.circle_x(x = [5,7,2], y = [2,4,9], size = 20, fill_color = 'green',fill_alpha = 0.6, line_width = 2)
show(plot)
运行结果: