在plotly中注释动画

时间:2018-03-21 11:33:59

标签: python animation annotations plotly

我正在制作一个填充区域动画,非常类似于: link

如何添加根据情节动画制作动画的注释? 也就是说,如何仅在注释点出现时才能显示注释文本?

1 个答案:

答案 0 :(得分:0)

诀窍是添加

 layout = go.Layout(annotations= [dict( 'my Annotations')])

进入框架

frames = [dict(data=[], traces=[], layout = go.Layout(annotations= [dict( 'my Annotations')]) )]

然后,注释将与框架相关,而不与父级布局

相关