图表js。如何通过工具提示的中心对齐文本?

时间:2018-11-01 14:46:59

标签: javascript canvas chart.js chartjs-2.6.0

bodyAlign和titleAlign不起作用,也许有人知道如何通过工具提示的中心对齐文本?

enter image description here

https://jsfiddle.net/Dima1501/m7s43hrs/2900/

var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
  type: 'doughnut',
  data: {
    labels: ["Red", "Blue", "Yellow"],
    datasets: [{
      label: '# of Votes',
      data: [12, 19, 3],
      backgroundColor: [
      ],
      borderColor: [
      ],
      borderWidth: 1
    }]
  },
 options: {
    tooltips: {
    yAlign: 'bottom',
            xAlign: 'center',
    xPadding: 25,
            yPadding: 15,
      xPadding: 45,
      titleAlign: 'center',
            footerAlign: 'center',
            bodyAlign: 'center',
  callbacks: {
  },
  backgroundColor: '#ccc',
  titleFontSize: 16,
  titleFontColor: '#0066ff',
  bodyFontColor: '#000',
  bodyFontSize: 14,
  displayColors: false
   }
  }
});

2 个答案:

答案 0 :(得分:0)

您的align properties搞砸了。 试试看:

https://jsfiddle.net/m7s43hrs/2951/

答案 1 :(得分:0)

您使用的是带有错误的2.5.0。更新到最新的2.8.0,它已经可以正常工作了。 https://jsfiddle.net/zhuhang95/utc9wenx/4/

通常,使用titleAlignbodyAlign应该可以解决问题。

Chart.js文档:https://www.chartjs.org/docs/latest/configuration/tooltip.html#alignment

        options: {
            tooltips: {
                titleAlign: 'center',
                bodyAlign: 'center'
            }
        }