我尝试将饼图(使用Chart.js 2.0创建)的图例向左或向右移动,但我总是收到错误。底部和顶部选项有效。
var myChart = new Chart(ctx, {
type: 'pie',
data: {
labels: optionLabels,
datasets: [{
label: '# of Resources',
data: optionData,
backgroundColor: optionColor,
borderColor: "white",
borderWidth: 1,
}]
},
options: {
legend: {
position: 'left'
}
}
});
是否存在库错误或类似内容?