Highstock 在 x 轴上使用数字而不是日期
我需要在页面上输出一个绘图,并且我正在考虑使用 Highstock 或 Highcharts 来实现此功能。 Highstock 界面更可取,因为导航器窗格在重新缩放后显示了绘图的其余部分。
然而,我的绘图在 x 轴上有数字,但没有日期/时间。有没有办法将 Highstock 与数字 x 比例一起使用?或者向 Highcharts 添加类似的导航器?
I need to output a plot on page, and I'm considering Highstock or Highcharts to implement this. Highstock interface is more preferable due to navigator pane showing the rest of plot after rezooming.
However my plot has numbers in x-asis, but not date/time. Is there any way to use Highstock with numerical x-scale? Or add similar navigator to Highcharts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面的
X Axis
格式化程序可以与high Stock一起使用,以在X轴
中显示数字:Below
X Axis
formatter can be used with high Stock for displaying numbers inX-Axis
:Highstock 的唯一 xAxis 类型是日期时间,因此不能将其与数字一起使用。 (也许如果您进行一些棘手的格式化操作并使用相同的格式化选项定义自定义工具提示,那么可能是可能的)。
只留下 Highcharts,有一个名为 主从图表 的示例可以满足您的要求。
希望有帮助。
Highstock's only type of xAxis is datetime, so using it with numbers is not an option. (Maybe if you make some tricky formatting actions and define a custom tooltip with the same formatting options it might be possible).
Leaves only Highcharts and there is an example called master-detail chart that could meet your requirements.
Hope that helps.