我正在使用canvas.js
,它工作正常。我只是想改變tooltip
的顏色。我試試以下代碼CanvasJS從數據顏色更改工具提示顏色
toolTip: {
enabled: true,
animationEnabled: true,
fontColor: "red",
Content: "{x} : {y}",
},
通過它不改變整個工具提示顏色。 我該怎麼做。
這裏是我的JS
var chartResponses = new CanvasJS.Chart("chartResponses", {
animationEnabled: true,
toolTip: {
enabled: true,
animationEnabled: true,
fontColor: "red",
Content: "{x} : {y}",
color: "rgba(0, 0, 0, 0.25)",
},
axisX: {
titleFontFamily: "verdana",
valueFormatString: "D/M/YYYY",
tickThickness: 0,
lineThickness: 1,
gridThickness: 0,
gridColor: "#f2f6f7",
lineColor: "#f2f6f7",
labelFontColor: "#8fa2aa",
labelFontSize: 12
},
axisY: {
titleFontFamily: "verdana",
valueFormatString: "0",
tickThickness: 0,
lineThickness: 0,
gridThickness: 1,
gridColor: "#f2f6f7",
lineColor: "#f2f6f7",
labelFontColor: "#8fa2aa",
labelFontSize: 12
},
data: [{
type: "splineArea",
showInLegend: true,
markerSize: 0,
name: "",
color: "rgba(29, 176, 237, 0.25)",
dataPoints: allResponses
}],
});
chartResponses.render();
我想改變工具提示的顏色不是背景顏色。 – urfusion
您可以分享您的任何形象的要求,以便我們可以查看它並提供解決方案 – Sanjoy
我希望您可以檢查圖像工具提示'7/7/2016:20'中的日期與顏色不同圖形數據字段。像'20'現在有不同的顏色。 – urfusion