我有一张高库存图表。是否可以在图表区域内渲染滑块?文档中仅提供了简单的元素,例如文本,框等。
答案 0 :(得分:0)
您可以使用注释添加一些可滚动的HTML元素:
annotations: [{
labelOptions: {
...,
useHTML: true,
shape: 'rect',
formatter: function() {
return '<div class="annotationContainer"><div>Some text</div></div>'
},
y: 15
}
}]
实时演示: http://jsfiddle.net/BlackLabel/sfLum9ep/
API参考: https://api.highcharts.com/highstock/annotations.labelOptions.useHTML