如何获取通过“单击添加”生成的一系列点在高图表中?
您可以要求用户通过单击向字符添加点来提供数据,请参阅此演示。 但我不知道如何检索这些点并将它们发送回服务器(使用 POST 或 AJAX 等)。我只是想知道如何在 javascript 中获取它们。
You can ask the user to supply data by clicking to adding points to a char, see this demo.
But I don't know how to retrieve those points and send them back to the server (with a POST or AJAX, whatever). I just want to know how to get them in javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需访问在 javascript 中定义的
chart
变量即可:访问新点,如下所示:
Just access the
chart
variable defined like this in javascript:Access the new points like this:
也许比这更简单,如果您在链接到的演示中使用事件/单击函数,您可以在 addSeries 调用之前捕获值:
Perhaps even simpler than that, if you use the event/click function in the demo that you linked to, you can capture the values before the addSeries call: