gpt4 book ai didi

Highcharts:删除绘图边框和实际图表之间的空间

转载 作者:行者123 更新时间:2023-12-04 00:38:59 24 4
gpt4 key购买 nike

我们正在从基于 Flash 的图表库 (FusionCharts) 迁移到基于 JavaScript 的图表库 (HighCharts)。

这就是我们当前的 Flash 图表的样子
Current flash charts

这就是我目前使用 HighCharts 所得到的。
enter image description here

如何删除绘图边框和实际图表数据之间的空间(用大的哑红色箭头标记)?

这是我的代码:http://jsfiddle.net/ChrisMBarr/7JAcN/1/

var chart = new Highcharts.Chart({
chart:{
renderTo: 'container',
type: 'areaspline',
plotBorderWidth: 1,
spacingTop:2,
spacingRight:5,
spacingBottom:5,
spacingLeft:2,
borderWidth:1,
borderRadius:0,
borderColor:'#999'
},
credits: {
enabled: false
},
title: {
text: 'Total spam in the last 7 days'
},
legend: {
verticalAlign: 'bottom',
borderWidth: 1,
backgroundColor: '#FFFFFF'
},
xAxis: {
allowDecimals:false,
categories: [
'Thu 2/14',
'Fri 2/15',
'Sat 2/16',
'Sun 2/17',
'Mon 2/18',
'Tue 2/19',
'Wed 2/20'
],
labels: {
staggerLines: 2
},
tickmarkPlacement: 'on',
},
yAxis: {
allowDecimals:false,
alternateGridColor: '#F7F7F7',
title: {
text: 'Number of Emails',
margin:5
}
},
tooltip: {
formatter: function() {
var isSpam = this.series.name === _chartOptions.series[1].name
return ''+this.x +': <strong>'+ this.y +(isSpam ? " Spam" : "") +' Emails</strong>';
}
},

plotOptions: {
areaspline: {
fillOpacity: 0.5
}
},

series: [{
"name": "Total Mail",
"color":"#339999",
"data": [2,3,4,7,8,8,8]
},{
"name": "Spam",
"color":"#003399",
"data": [2,2,4,4,4,6,8]
}]
});

最佳答案

这可能有帮助:

xAxis: {
min: 0.5, max: 5.5
...

其中 max = 数据点数减 1.5

关于Highcharts:删除绘图边框和实际图表之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14991486/

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