【问题标题】:Is there any way to change the font color and size of labels in Chartjs 3.0.0有什么方法可以更改 Chartjs 3.0.0 中标签的字体颜色和大小
【发布时间】:2021-03-06 19:48:28
【问题描述】:

使用 chart.js 3.0.0 测试版

看来他们还没有实现任何改变标签字体属性的方法( 以下独立示例中的数量和月份)

我尝试了几种方法,但似乎这是不可能的

要明确的是,我要更改颜色的是标签,而不是标题或数据集。

谁能证实这一点?


<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.0.0-beta.12/chart.js"></script>
 
</head>

<body>
    <div id="container" style='background-color:white' >
        <canvas id="canvas"></canvas>
    </div>
 
    <script>
            
window.onload = function() {

    var ctx = document.getElementById('canvas').getContext('2d');

    var chart = new Chart(ctx, {
        type: 'bar',
        data: {
            labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
            datasets: [{            
                data: [     50,     -90,        75,     40,     -100,       220,        11      ]   
            }]
        },
        options: {
            indexAxis: 'y',
            plugins: {
                    legend: {
                        display: false,
                        labels:{
                            fontSize: 20,
                            fontColor: 'red',
                        }
                    },
                    title: {
                        display: true,
                        text: 'Chart.js Horizontal Bar Chart'
                    },
            },
            scales: {
                    x: {
                        display: true,
                        scaleLabel: {
                            display: true,
                            labelString: 'Volume',
                            fontColor:'#666',
                            fontSize: 20,
                            fontStyle: 'italic'
                        }
                    },
                    y: {
                        display: true,
                        scaleLabel: {
                            display: true,
                            labelString: 'Month',
                            fontColor:'#666',
                            fontSize: 20,
                            fontStyle: 'bold'
                        }
                    }
            }           
        }
    }); 
};
             
    </script>
</body>
</html>

【问题讨论】:

    标签: javascript chart.js chart.js3


    【解决方案1】:

    这些属性在 v3 中的命名发生了变化,请参阅迁移指南 (https://www.chartjs.org/docs/master/getting-started/v3-migration) 和字体文档 (https://www.chartjs.org/docs/master/general/fonts) 了解更多信息:

    例子:

    var options = {
      type: 'line',
      data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: '# of Votes',
            data: [12, 19, 3, 5, 2, 3],
            borderWidth: 1
          },
          {
            label: '# of Points',
            data: [7, 11, 5, 8, 3, 7],
            borderWidth: 1
          }
        ]
      },
      options: {
        plugins: {
          legend: {
            labels: {
              font: {
                size: 20
              },
              color: 'red',
            }
          }
        }
      }
    }
    
    var ctx = document.getElementById('chartJSContainer').getContext('2d');
    new Chart(ctx, options);
    <body>
      <canvas id="chartJSContainer" width="600" height="400"></canvas>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.0.0-beta.12/chart.js" integrity="sha512-KTkh8VBBRBzCXlXeR49sBgmLkU6CE7li47A70NR+yYMKGEDOfQR4L2PEQ3KRXeET8j1U+gSRpRjkAS4tQjTGag==" crossorigin="anonymous"></script>
    </body>

    【讨论】:

      猜你喜欢
      • 2011-04-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-06-06
      • 2023-01-01
      • 2020-01-01
      • 1970-01-01
      相关资源
      最近更新 更多