Highstock 在 x 轴上使用数字而不是日期

发布于 2025-01-07 06:58:55 字数 208 浏览 1 评论 0原文

我需要在页面上输出一个绘图,并且我正在考虑使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

念三年u 2025-01-14 06:58:55

下面的X Axis格式化程序可以与high Stock一起使用,以在X轴中显示数字:

xAxis: {labels: {   formatter: function () {return this.value;}} }

Below X Axis formatter can be used with high Stock for displaying numbers in X-Axis:

xAxis: {labels: {   formatter: function () {return this.value;}} }
嗫嚅 2025-01-14 06:58:55

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.

秋叶绚丽 2025-01-14 06:58:55
xAxis: {
    type: 'linear' // Other types are "logarithmic", "datetime" and "category"
}, 
xAxis: {
    type: 'linear' // Other types are "logarithmic", "datetime" and "category"
}, 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文