旋转Plotly线标记

时间:2017-12-05 14:26:20

标签: python plot plotly

我正在尝试使用Plotly绘制事件的时间轴,我有以下示例代码:

res = {
    "First event": 5,
    "Second event": 6,
    "Third event": 30
}

names, dates = zip(*res.items())

trace = go.Scatter(
    x=dates, y=[0] * len(names), text=names, mode='lines+markers+text', 
    marker=dict(
        symbol="hexagon-dot",
        size=10,
    )
)

layout = go.Layout()
fig = go.Figure(layout=layout, data=[trace])
iplot(fig)

我得到以下结果: enter image description here

我想要做的是旋转标记文本,使标记不重叠。可以这样做吗?

0 个答案:

没有答案