连接图中的两点
我正在尝试使用 HighStock JS 进行 JSON 数据的图形表示,并且我想使用另一条直线连接图表上的两个点..例如我的是一个股票市场图表,我想连接每日“高点”或该图表内的“低点”为直线...是否可以使用 Highstock JS 图表来做到这一点?
I am trying to use HighStock JS for graphical representation of JSON data and I want to connect two points on a graph using another straight line.. like for example..mine is a stock market graph and I want to connect the daily "highs" or "lows" inside that graph with a straight line... Is it possible to do that with a Highstock JS graphs??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 HighStock JS 来做到这一点。创建图形后,您可以使用 renderer.path 方法创建路径。它遵循与 SVG 路径相同的形式。这是一个简短的片段,它将创建一条从绝对坐标 (300,50) 到 (400,50) 的线。有关更多详细信息,请参阅渲染器文档 http://www.highcharts.com/ref/#renderer
Yes, you can do this with HighStock JS. After you create the graph, you can use the renderer.path method to create a path. It follows the same form as the SVG path. Here is a short little snippet that would create a line from the absolute coordinates (300,50) to (400,50). See the renderer documentation for more details http://www.highcharts.com/ref/#renderer