如何使用Bokeh在Holoview上旋转文本为水平

问题描述 投票:1回答:1

https://holoviews.org/gallery/demos/bokeh/route_chord.html的示例中,如何将弧标签的方向更改为水平?不重叠的奖励积分 - 或使用单独传奇的替代方案

bokeh holoviews
1个回答
2
投票

来自gitter的@philippjfr礼貌答案是:

# %%opts Chord [edge_color_index='SourceID' label_index='City' color_index='AirportID' width=800 height=800]
# %%opts Chord (cmap='Category20' edge_cmap='Category20')

def rotate_label(plot, element):
    text_cds = plot.handles['text_1_source']
    length = len(text_cds.data['angle'])
    text_cds.data['angle'] = [0]*length
    xs = text_cds.data['x']
    text = np.array(text_cds.data['text'])
    xs[xs<0] -= np.array([len(t)*0.019 for t in text[xs<0]])

busiest_airports.options(
    edge_color_index='SourceID', label_index='City', color_index='AirportID',
    width=800, height=800, finalize_hooks=[rotate_label], cmap='Category20',
    edge_cmap='Category20'
)
© www.soinside.com 2019 - 2024. All rights reserved.