Chart.js - 造型图例

时间:2017-04-02 20:16:57

标签: javascript jquery chart.js

我正在使用chart.js创建一个图表,我正在试图弄清楚如何更改标签/图例样式。 我想删除矩形部分,而是使用圆圈。我已经读过你可以制作你的自定义图例(使用legendCallback),但对于我的生活,我无法弄清楚如何做到这一点。这就是我的图表现在的样子 - image

这是我的HTML:

<div class="container">
<canvas id="myChart"></canvas>
</div>

这是我的JS:

var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
    type: 'line',
    data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: 'Link One',
            data: [1, 2, 3, 2, 1, 1.5, 1],
            backgroundColor: [
                '#D3E4F3'
            ],
            borderColor: [
                '#D3E4F3',
                'rgba(54, 162, 235, 1)',
                'rgba(255, 206, 86, 1)',
                'rgba(75, 192, 192, 1)',
                'rgba(153, 102, 255, 1)',
                'rgba(255, 159, 64, 1)'
            ],
            borderWidth: 1
        }]
    },
    options: {
        legend: {
            display: true,
          position: 'bottom',
            labels: {
                fontColor: '#333',
            }
        }
}
});

我是JS的新手,所以请尽可能详细地说明你的答案。非常感谢你!

5 个答案:

答案 0 :(得分:14)

无需使用legendCallback功能。您可以设置usePointStyle = true将该矩形变成圆圈。

&#13;
&#13;
Chart.defaults.global.legend.labels.usePointStyle = true;

var ctx = document.getElementById("myChart").getContext("2d");
var myChart = new Chart(ctx, {
    type: 'line',
    data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: 'Link One',
            data: [1, 2, 3, 2, 1, 1.5, 1],
            backgroundColor: [
                '#D3E4F3'
            ],
            borderColor: [
                '#D3E4F3',
                'rgba(54, 162, 235, 1)',
                'rgba(255, 206, 86, 1)',
                'rgba(75, 192, 192, 1)',
                'rgba(153, 102, 255, 1)',
                'rgba(255, 159, 64, 1)'
            ],
            borderWidth: 1
        }]
    },
    options: {
        legend: {
            display: true,
            position: 'bottom',
            labels: {
                fontColor: '#333'
            }
        }
    }
});
&#13;
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script>
<div class="container">
  <canvas id="myChart"></canvas>
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:8)

对于angular4-chart.js,您可以使用options属性,如下所示:

options = {
      legend:{
        display: true,
        labels: {
          usePointStyle: true,
        }
      }
}

答案 2 :(得分:5)

步骤1:
将选项更改为:

options: {
    legend: {
        display: false,
    }
}

步骤2:
在画布上附加此代码(就在画布之后):

<div id='chartjsLegend' class='chartjsLegend'></div> //Or prepend to show the legend at top, if you append then it will show to bottom.

步骤3:
生成此图例而不是默认值(就在mychart之后):

document.getElementById('chartjsLegend').innerHTML = myChart.generateLegend();

步骤4:
制作css,使其生成圆圈:

.chartjsLegend li span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 25px;
}

步骤5:
用你想要的东西改变css应该更好。
现在是一些chimichangas的时间。

答案 3 :(得分:3)

使用 usePointStyle:true

var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
type: 'line',
data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
        label: 'Link One',
        data: [1, 2, 3, 2, 1, 1.5, 1],
        backgroundColor: [
            '#D3E4F3'
        ],
        borderColor: [
            '#D3E4F3',
            'rgba(54, 162, 235, 1)',
            'rgba(255, 206, 86, 1)',
            'rgba(75, 192, 192, 1)',
            'rgba(153, 102, 255, 1)',
            'rgba(255, 159, 64, 1)'
        ],
        borderWidth: 1
    }]
},
options: {
    legend: {
        display: true,
      position: 'bottom',
        labels: {
            fontColor: '#333',
            usePointStyle:true
        }
    }
}

});

答案 4 :(得分:2)

有关@GRUNT答案的其他信息 我在legend.labels中分配usePointStyle,而不是@GRUNT所做的Chart.defaults.global.legend.labels.usePointStyle = true;

这在使用react时很有用

legend: {
    labels: {
      usePointStyle: true,
    },
  }

更多信息在这里 Display point style on legend in chart.js