Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/ant/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Highcharts Highchart-删除日期表单工具提示_Highcharts - Fatal编程技术网

Highcharts Highchart-删除日期表单工具提示

Highcharts Highchart-删除日期表单工具提示,highcharts,Highcharts,问题很简单:如何从图形中的线条工具提示中删除日期 使用工具提示格式化程序() 工具提示:{ 格式化程序:函数(){ 返回“+this.x”的“值”+ 'is'+this.y+'; } }, 您还可以将工具提示.headFormat设置为空字符串',以禁用工具提示标题(显示数据) API: tooltip: { formatter: function () { return 'The value for <b>' + this.x +

问题很简单:如何从图形中的线条工具提示中删除日期

使用工具提示格式化程序()

工具提示:{
格式化程序:函数(){
返回“+this.x”的“值”+
'is'+this.y+';
}
},

您还可以将
工具提示.headFormat
设置为空字符串
'
,以禁用工具提示标题(显示数据)

API:

   tooltip: {
        formatter: function () {
            return 'The value for <b>' + this.x +
                '</b> is <b>' + this.y + '</b>';
        }
    },