如何将饼图高图中的标题文本居中?

发布于 2025-01-18 08:12:38 字数 776 浏览 0 评论 0原文

我正在尝试将饼图 Highchart 的标题文本居中对齐。能够实现这一点,但是当鼠标悬停和鼠标移出时,标题数据不会更新。任何人都可以帮助我。 在 MouseHOver 上尝试执行下面提到的代码

 point: {
            events: {
              mouseOver: function() {
                                                  let span = '<span style="color:${this.color}" class="dealer-title">${this.y}<br/> <span style="color:#33383e;}" class="text-truncate" title="${this.name}"><b> </b></span></span>';

                $('.customTitle')[0].innerHTML = span
              }
            }
          }
        }
      },

附小提琴: https://jsfiddle.net/5sutmqv3/1/

I am trying to do center align the title text of the pie chart Highchart. Was able to achieve that but on mouse hover, and mouse out the title data doesn't get updated. Anyone can help me with the same.
On MouseHOver trying to do the below mentioned code

 point: {
            events: {
              mouseOver: function() {
                                                  let span = '<span style="color:${this.color}" class="dealer-title">${this.y}<br/> <span style="color:#33383e;}" class="text-truncate" title="${this.name}"><b> </b></span></span>';

                $('.customTitle')[0].innerHTML = span
              }
            }
          }
        }
      },

fiddle attached:
https://jsfiddle.net/5sutmqv3/1/

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

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

发布评论

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

评论(2

巡山小妖精 2025-01-25 08:12:38

您需要在text中启用usehtml参数方法调用:

  chart: {
    type: 'pie',
    events: {
      load: function() {
        ...
        var text = rend.text("textTexttext", left, top, true).attr({
            'text-anchor': 'middle',
            align: 'center',
            'zIndex': 10
          }).addClass('customTitle').add();
      }
    }
  }

live demo: https://jsfiddle.net/blacklabel/w5a2jpk7/

api参考: https://api.highcharts.com/class-reference/highcharts.svgrenderer#text

You need to enable useHTML argument in the text method call:

  chart: {
    type: 'pie',
    events: {
      load: function() {
        ...
        var text = rend.text("textTexttext", left, top, true).attr({
            'text-anchor': 'middle',
            align: 'center',
            'zIndex': 10
          }).addClass('customTitle').add();
      }
    }
  }

Live demo: https://jsfiddle.net/BlackLabel/w5a2jpk7/

API Reference: https://api.highcharts.com/class-reference/Highcharts.SVGRenderer#text

雨落星ぅ辰 2025-01-25 08:12:38

看来您不能在标题中包含 html 标签。如果删除 SPAN,它将显示这些值。

$('.customTitle')[0].innerHTML = this.y

It looks like you can't include html tags in the title. If you remove the SPANs it'll display the values.

$('.customTitle')[0].innerHTML = this.y
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文