是否可以在下面的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线。如果有人可以让我知道我是否可以禁用区域系列的工具提示。
提前致谢
答案 0 :(得分:2)
不是将toolTipContent设置为空字符串,而是将toolTipContent设置为null,这将禁用单个dataPoint / dataSeries的工具提示。在您的jsfiddle中,您使用的是v1.4.1,它不支持此功能。请下载最新版本。这是working code。
var chart = new CanvasJS.Chart("container",
{
data: [
{
toolTipContent: null,
type: "column",
dataPoints:[
{ x: 10, y: 20}
]
}
]
});
chart.render();