聚合值的 HighCharts 图表
我正在尝试在 Highcharts 中创建具有以下性质的柱形图:
X 轴:以秒为单位的时间 Y 轴:特定时间值出现的次数。
换句话说,我希望能够输入以下数据系列:
[50,50,30]
,并且它应该创建一个具有以下值的柱形图:
x: 30 ,y:1 x: 50, y: 2
这种类型的功能在 Highcharts 中可行吗?
谢谢你!
I'm trying to create a column graph in Highcharts of the following nature:
X Axis: Time in seconds
Y Axis: how many times the particular time value appears.
In other words, I want to be able to have the following data series entered in:
[50,50,30]
and it should create a column chart with the following values:
x: 30, y: 1
x: 50, y: 2
Is this type of functionality possible in Highcharts?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,但与 highcharts 没有直接关系。
您只需在调用 highcharts 函数之前创建一个 javascript 代码片段,以所需的格式分割数据,然后在 highcharts 中使用它(系列和总计/值)。
没有图表库可以为您完成这项工作。
javascript 片段应该如下所示:
类似这样的东西。我希望它有帮助。
问候
It is possible but it's not directly related to highcharts.
You just have to create a javascript snippet before calling highcharts functions to spliut your data in the format you want and then use it in highcharts (series and totals/values).
No charting library will do that work for you.
the javascript snippet should look like this :
Something like this. I hope it helps.
Regards