我有一个条形图,其中包含各个供应商的当前和上一年的价值。在相反的xAxis上,我有一个保证金值。我可以通过以下示例解释我想要的更好:
http://jsfiddle.net/0m3208qj/2/
这里发生的事情是我还有保证金的当前和以前的值。因此线图将xAxis加倍。我想要的是,对于每个xAxis值,应该有一行包含两个值。因此,我们以A列为例。我想要 : - A当年的一个点显示当前年度的保证金 - A去年的一个点显示前一年的保证金 - 加入两者的一条线 - 此行不应继续进入其他xAxis系列。 - 每个xAxis都应该有自己的行。
我希望我已经正确解释了这一点。
以下是代码:
$(function () {
$('#container').highcharts({
chart: {
//zoomType: 'xy',
height: 400
},
title: {
text: null
},
xAxis: [{ // Suppier names xAxis
categories: ['A','B','C','D','E','F','G','H','I','J'],
labels: { rotation: -90 }
}],
yAxis: [{ // Primary yAxis (Sales)
title: {
text: '<span class="axis-label">Sales Value (£)</span>',
useHTML: true,
style: {
color: '#89A54E'
}
},
min: 0,
}
, { // Secondary yAxis (Margin %)
title: {
text: '<span class="axis-label">Margin</span>',
useHTML: true
},
labels: {
format: '{value}%'
},
opposite: true,
min: 0,
alignTicks: false,
gridLineWidth: 0
}
],
tooltip: {
shared: true
},
legend: {
enabled: true
},
credits: { enabled: false },
plotOptions: {
//series: { pointWidth: 25 },
//column: {
// pointPadding: 0.5,
// borderWidth: 0
//},
line: {
dataLabels: {
enabled: true,
format: '{y}%',
style: {
fontWeight: 'bold',
color: '#000000',
}
}
}
},
series: [{
name: 'Current Year',
color: '#FFA500',
type: 'column',
data: [104833.6400,38023.0500,49932.5400,21674.0000,37098.4700,42679.6700,29142.4800,34488.8000,33380.0000,15453.0000],
tooltip: {
valuePrefix: '£'
}
}, {
name: 'Previous Year',
color: '#5882FA',
type: 'column',
data: [190233.6800,52147.4200,39609.5700,62502.0000,44805.4400,39057.4800,36631.0000,24868.9000,17111.6800,18819.7000],
tooltip: {
valuePrefix: '£'
}
}, {
name: 'Margin',
type: 'spline',
yAxis: 1,
data: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
}]
});
});
编辑:
好的 - 所以这个例子说明了我要做的事情: http://jsfiddle.net/0m3208qj/4/。 您可以在B列中看到该行。我的问题是它在中心显示它,我希望它在相关列中。