我只是要使用图表周围的 html 对其进行硬编码,我不想使用内置的。
我在 API 中没有看到“禁用:true”选项。
任何人都可以在这里帮助我。
你如何禁用highcharts中的标题/副标题?
(如果您只是将文本留空,它仍然会在标题所在的位置划出一个空格,我不想发生这种情况)
我只是要使用图表周围的 html 对其进行硬编码,我不想使用内置的。
我在 API 中没有看到“禁用:true”选项。
任何人都可以在这里帮助我。
你如何禁用highcharts中的标题/副标题?
(如果您只是将文本留空,它仍然会在标题所在的位置划出一个空格,我不想发生这种情况)
将标题文本设置为空字符串是一种方法。
在这种情况下,不会为标题创建空格:
没有文字:http: //jsfiddle.net/jlbriggs/JVNjs/284/
带文字:http: //jsfiddle.net/jlbriggs/JVNjs/286/
title:{
text:''
}
如果您想要的空间比这种情况下的剩余空间少,只需将您的 'marginTop' 设置为 0
{{由于众多评论而编辑:
正如下面多次指出的那样,文档现在text: null
将其作为实现此目的的方法。
任何一种方法都能达到预期的效果。
text: String 图表的标题。要禁用标题,请将文本设置为 null。默认为图表标题。
小提琴:http: //jsfiddle.net/daub10dr/
title:{
text: null
}
我更喜欢这种方法:
title: {
text: '',
style: {
display: 'none'
}
},
subtitle: {
text: '',
style: {
display: 'none'
}
},
很简单!在最新版本的 Highcharts 中,只需将 title 和 subtitle 属性设置为 false。
{
title: false,
subtitle: false
}
你总是可以这样做:
chart:{
marginTop: 30
}
title:{
text: ''
}
这对我有用:-)
注意:
此答案适用于version 2.*
,对于较新的版本,有更好的答案。
这很简单......只需将标题的文本设置为空。像这样
$(function () {
$('#container').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
title: {
text: null
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});
参见@APIreference:http ://api.highcharts.com/highcharts#title.text
Set the text field to null
From the documentation at http://api.highcharts.com/highcharts#title.text
text: String
The title of the chart. To disable the title, set the text to null. Defaults to Chart title.
根据 Highcharts 文档,正确的方法是将“文本”设置为空。
在下面的 react-native 代码中为我工作,
title: {
style : {
display : 'none'
}
}
希望它有所帮助。
For those that use Typescript you can set the Highcharts.TitleOptions to hide the chart title.
title: {
text: undefined
},
subtitle: {
text: undefined
}
这是解决方案
title: {
text: null
},
subtitle: {
text: null
}
只写一个 JSON 对象
title : {
style : {
display : 'none'
}
}
这对我有用!!!
title:false
这有点小技巧,但您也可以尝试:
title: {
text: '<span class="hidden">My custom Hello</span>',
align:"left",
useHTML:true
}