我们需要做在图表上面加上一些特定的几个标记,参考了示例的代码,是可以显示的,不过数据要事先定义好。示例地址如下:
https://demo.grapecity.com.cn/wijmo/demos/Chart/Features/Annotations/purejs。
但是我们数据是动态的,然后找到了参考文档,文档地址https://demo.grapecity.com.cn/wijmo/docs/Topics/Chart/Advanced/Annotations
var annotations = new wjAnnotation.AnnotationLayer(myChart);// attach Ellipse annotation to data point 5annotations.items.push({ type: 'Ellipse', content: 'Ellipse', tooltip: 'This is an <b>Ellipse</b><br/>annotation', attachment: 'DataIndex', seriesIndex: 0, pointIndex: 5, width: 100, height: 40, position: 'Top', style: { fill: 'green', stroke: 'darkgreen', strokeWidth: 2, opacity: .25 } });
上面一段代码直接使用会报错,显示的是t.render is not a function.相关js已经引入。有没有人帮忙看看问题?谢谢
|
|