gpt4 book ai didi

font-size - 更改字体大小 Jquery Highcharts

转载 作者:行者123 更新时间:2023-12-01 07:21:17 24 4
gpt4 key购买 nike

有什么办法可以改变hightcharts jquery中图表的字体大小??
我试过 fontsize 选项,但它根本不起作用..

我试图使图例字体更小,以便它可以适合购物车,如果图例很长,则不会创建新行。
也许有人试过??

这是我的脚本:

options = {

chart: {

backgroundColor: {

linearGradient:[0, 0, 500, 500],

stops: [

[0, 'rgb(255,255,255)'],

[1, 'rgb(237,236, 250)']]},

type: tGraf,

renderTo: contGrafik,

defaultSeriesType: 'column',

width: sWidth

},

title: {

text: 'Human Resources',

style: {

font: 'normal 14px Verdana, sans-serif',

color : 'black'

}

},

subtitle: {

text: '',

style: {

font: 'normal 11px Verdana, sans-serif',

color : '#000099'

}

},

xAxis: {

title: {

text : ''

},

labels: {

rotation: 0,

align: 'right',

style: {

font: 'normal 11px Verdana, sans-serif',

color : 'black'

}

},

},

yAxis: {

allowDecimals : false ,

labels: {

align: 'right',

style: {

font: 'normal 11px Verdana, sans-serif',

color : 'black'

}

},

gridLineColor: '#EEEFE1',

title: {

text: 'Employees',

style: {

font: 'normal 13px Verdana, sans-serif',

color : 'black'

}

}

},

plotOptions: {

column: {

dataLabels : {

enabled : true,

formatter: function() {

return this.y;

}

},

cursor: 'pointer'

}},

legend: {

itemWidth : uLegend,
style: {

font: 'normal 5px Verdana, sans-serif',

color : 'black',

}

symbolPadding: 2,

symbolWidth: 15,

backgroundColor: '#FFFF99',

itemStyle: {

cursor: 'pointer',

color: '#3E576F'

},

width: 600,

align: 'center',

layout: 'horizontal'},

tooltip: {

formatter: function() {

return '<b>'+ this.series.name +'</b><br/>'+this.y + ' Orang';

}

}

};

最佳答案

您可能正在寻找 itemStyle传说选项:

legend: {
itemStyle: {
color: '#000000',
fontWeight: 'bold',
fontSize: '8px'
}
}

关于font-size - 更改字体大小 Jquery Highcharts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6990689/

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