ChartJS更改轴标签

时间:2017-09-20 10:16:30

标签: javascript charts chart.js axis

我想更改图表上的轴标签。

我需要将轴标签从中心向右移动(以及将其从红色区域移动到蓝色区域)

目前看起来像这样: enter image description here

myChart  = new Chart(document.getElementById("myChart"), {        
    type: 'bubble',     
    options: {
      title: {
        display: true,
        text: 'Ёмкость рынка и количество сделок'
      }, scales: {
        yAxes: [{ 
          scaleLabel: {
            display: true,
            labelString: "Ёмкость, млн. BYN"
          }
        }],
        xAxes: [{             
          scaleLabel: {
            display: true,             
            labelString: "Ёмкость, тыс. кв. м",
            
          }
        }]
      }
    }
});

0 个答案:

没有答案