我正在使用Google Chart Tools DataTable Roles功能来注释LineChart,如下面的链接所示: - https://developers.google.com/chart/interactive/docs/roles
但是注释是水平的而不是垂直的。例如,“开始使用电子表格”注释下面是垂直的,这是我想要的,但对我来说它不是垂直的。
我使用以下代码添加带注释的列: -
addColumn({type:'string', role:'annotation'});
请帮忙。
答案 0 :(得分:3)
你很亲密!
由于您已准备好常规注释,只需添加到图表选项:
annotations: {style: 'line'}
。
jsFiddle示例:http://jsfiddle.net/tVCv9/268/
阅读注释文档:https://developers.google.com/chart/interactive/docs/roles?hl=fr#annotationrole
祝你好运!