在 GWT highcharts 中的 xaxis 上绘制图像

发布于 2025-01-04 21:48:58 字数 354 浏览 0 评论 0原文

我试图在我的 highchart 中的每个 xaxis 上创建图像,就像所附图像中的图像一样,但找不到它的方法,

这是我的 xaxis 代码,

         chart.getXAxis(1).setOpposite(true).setLinkedTo(0).setType(Type.DATE_TIME)
    .setTickInterval(6 * 3600 *1000).setGridLineWidth(1)

知道如何为图表中的每个 xaxis 设置一些图像

在此处输入图像描述

I am trying to create image on every xaxis in my highchart like the one in the attached image , but couldn't find the way for it

here is my code for the xaxis

         chart.getXAxis(1).setOpposite(true).setLinkedTo(0).setType(Type.DATE_TIME)
    .setTickInterval(6 * 3600 *1000).setGridLineWidth(1)

any idea how can i set some image to every xaxis in my chart

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

妄想挽回 2025-01-11 21:48:58

您将需要使用 AxisLabelsFormatter。您从此调用“返回”的内容应该是您想要呈现的适当的 html。所以像这样的东西适用于顶轴:

chart.getXAxis().setLabels(
   new XAxisLabels()
     .setFormatter(new AxisLabelsFormatter() {
        public String format(AxisLabelsData axisLabelsData) {
            return '<img src="/path/to/image.gif" />';
        }
     })
 );

You will want to use the AxisLabelsFormatter. The content you "return" from this call should be the appropriate html you want to have rendered. So something like this work for the top axis:

chart.getXAxis().setLabels(
   new XAxisLabels()
     .setFormatter(new AxisLabelsFormatter() {
        public String format(AxisLabelsData axisLabelsData) {
            return '<img src="/path/to/image.gif" />';
        }
     })
 );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文