1
是否可以在以下canvasjs的組合圖表中僅禁用一個系列工具提示?在CanvasJS組合圖表中禁用工具提示
data: [
{
type: "area",
color: "red", // change color here
fillOpacity: 1,
dataPoints: [
{ x: 0, y: 100 },
{ x: 100, y: 100 }
]
},
{
type: "area",
color: "yellow",
toolTipContent: " ",
dataPoints: [
{ x: 0, y: 10 },
{ x: 100, y: 100 }
]
}
]
這裏是鏈接到我的小提琴: https://jsfiddle.net/Abhishek1191/s71djz9m/2
我有四個獨立的系列小提琴內部繪製。 3區和1條線。如果有人可以告訴我是否可以禁用區域系列的工具提示。
在此先感謝