gpt4 book ai didi

javascript - 在 CanvasJS 组合图中禁用工具提示

转载 作者:行者123 更新时间:2023-11-30 16:52:31 26 4
gpt4 key购买 nike

是否可以在下面的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 }
]
}
]

这是我的 fiddle 的链接: https://jsfiddle.net/Abhishek1191/s71djz9m/2

我在 fiddle 中绘制了四个独立的系列。 3个区域和1条线。如果有人可以让我知道我是否可以禁用区域系列的工具提示。

提前致谢

最佳答案

不是将 toolTipContent 设置为空字符串,而是将 toolTipContent 设置为 null,这将禁用单个数据点/数据系列的工具提示。在您的 jsfiddle 中,您使用的是不支持此功能的 v1.4.1。请下载最新版本。这是 working code .

var  chart =  new  CanvasJS.Chart("container",
{
data: [
{
toolTipContent: null,
type: "column",
dataPoints:[
{ x: 10, y: 20}
]
}
]
});
chart.render();

关于javascript - 在 CanvasJS 组合图中禁用工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30300758/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com