此問題是關於angular-chartjs 1.1.1。angular-chartJs更改圖表背景和突出顯示顏色
首先,我想禁用圖表上的懸停顏色。我已經設置下列選項設置爲false:
tooltips: {
enabled: false
},
hover: {
enabled: false
},
這不工作,所以我決定改變我的圓環圖的顏色,包括highlightColor
。要設置顏色,我在畫布上添加了指令chart-colors="colors"
。我的範圍我增加了以下內容:
$scope.colors = [{
fill: true,
backgroundColor: ["#FF6384","#36A2EB"]
}]
我也試過如下:
$scope.colors = [{
fill: true,
backgroundColor: "#FF6384"
},{
fill: true,
backgroundColor: "#36A2EB"
}]
兩個代碼片段不工作。他們只是把我的圖表部分變成灰色,但不是指定的顏色。 只有下面的代碼改變了我的圖表顏色:
$scope.colors = ["#FF6384","#36A2EB"]
這隻會改變backgroundColor
,但我想改變highlightColor
太多,所以這種解決方案對我來說沒有任何選項。任何人有一個想法如何設置圖表的backgroundColor
和hightlightColor
?