这可以使用FuncTickFormatter
一些 TypeScript 代码来完成。
from bokeh.models import FuncTickFormatter
p.xaxis.formatter = FuncTickFormatter(code='''Edit some typescript here.''')
最小示例
如果您的目标是为 0 到 1e7 之间的值编辑 x 轴,这应该可以工作。对于小于 1000 k
的值、介于 1000 和 1e6 之间的值以及m
更大的值,这将不选择任何单位。
from bokeh.plotting import figure, output_notebook, show
from bokeh.models import FuncTickFormatter
output_notebook()
# create a new plot with the toolbar below
p = figure(plot_width=400, plot_height=400,
title=None, toolbar_location="below")
x = [xx*1e6 for xx in range(1,6)]
y = [2, 5, 8, 2, 7]
p.circle(x, y, size=10)
p.xaxis.formatter = FuncTickFormatter(code='''
if (tick < 1e3){
var unit = ''
var num = (tick).toFixed(2)
}
else if (tick < 1e6){
var unit = 'k'
var num = (tick/1e3).toFixed(2)
}
else{
var unit = 'm'
var num = (tick/1e6).toFixed(2)
}
return `€ ${num} ${unit}`
'''
)
show(p)
输出