Bokeh 简明教程
Bokeh - Styling Visual Attributes
Bokeh 图表默认的外观可以通过设置各种属性为所需的值来进行定制。这些属性主要有三种类型 −
Line properties
下表列出与线形形状有关的各种属性。
1 |
line_color |
颜色用于描绘线条 |
2 |
line_width |
这以像素为单位,作为线描绘制宽度 |
3 |
line_alpha |
在 0(透明)和 1(不透明)之间,这作为一个浮点数 |
4 |
line_join |
如何将路径段连接在一起。定义的值为:'miter' (miter_join),'round' (round_join),'bevel' (bevel_join) |
5 |
line_cap |
如何终止路径段。定义的值为:'butt' (butt_cap),'round' (round_cap),'square' (square_cap) |
6 |
line_dash |
B这用于线型。定义的值为:'solid'、'dashed'、'dotted'、'dotdash'、'dashdot' |
7 |
line_dash_offset |
line_dash 中模式从哪个像素距离开始 |
Text properties
下表中列出了许多与文本相关的属性 −
1 |
text_font |
字体名称,例如“times”、“helvetica” |
2 |
text_font_size |
以像素、em 或 pt 为单位的字体大小,例如“12pt”、“1.5em” |
3 |
text_font_style |
用于‘normal’‘italic’‘bold’的字体样式 |
4 |
text_color |
这用于以呈现文本 |
5 |
text_alpha |
介于 0(透明)和 1(不透明)之间,这是一个浮点数 |
6 |
text_align |
文本的水平锚点 -“left”、“right”、“center” |
7 |
text_baseline |
文本的垂直锚点“top”、“middle”、“bottom”、“alphabetic”、“hanging” |