highcharts examples和combination of graphs非常适用于线条和图形。他们似乎也很好地重叠。但是,当我将线性图移动到第一个时,它会被隐藏起来'其余图表背后。 [] 或
移动'行'显示首先将其隐藏在其余数据之后。我希望该行仍然显示,但它需要是映射到图形的第一个数据:
在第二个示例链接中,更新代码,将线性图隐藏在其余图表后面:
$(function () {
$('#container').highcharts({
title: {
text: 'Combination chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
},
labels: {
items: [{
html: 'Total fruit consumption',
style: {
left: '50px',
top: '18px',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'black'
}
}]
},
series: [{
type: 'spline',
name: 'Average',
data: [3, 2.67, 3, 6.33, 3.33],
marker: {
lineWidth: 2,
lineColor: Highcharts.getOptions().colors[3],
fillColor: 'white'
}
},{
type: 'column',
name: 'Jane',
data: [3, 2, 1, 3, 4]
}, {
type: 'column',
name: 'John',
data: [2, 3, 5, 7, 6]
}, {
type: 'column',
name: 'Joe',
data: [4, 3, 3, 9, 0]
}, {
type: 'pie',
name: 'Total consumption',
data: [{
name: 'Jane',
y: 13,
color: Highcharts.getOptions().colors[0] // Jane's color
}, {
name: 'John',
y: 23,
color: Highcharts.getOptions().colors[1] // John's color
}, {
name: 'Joe',
y: 19,
color: Highcharts.getOptions().colors[2] // Joe's color
}],
center: [100, 80],
size: 100,
showInLegend: false,
dataLabels: {
enabled: false
}
}]
});
});
答案 0 :(得分:0)
您应该能够使用series.legendIndex参数制作图表。您可以在Highcharts API中找到有关此参数的更多信息: http://api.highcharts.com/highcharts/series.legendIndex
series: [{
type: 'spline',
name: 'Average',
legendIndex: 0,
data: [3, 2.67, 3, 6.33, 3.33],
index: 5,
marker: {
lineWidth: 2,
lineColor: Highcharts.getOptions().colors[3],
fillColor: 'white'
}
}, {
legendIndex: 1,
type: 'column',
name: 'Jane',
data: [3, 2, 1, 3, 4]
}, {
legendIndex: 2,
type: 'column',
name: 'John',
data: [2, 3, 5, 7, 6]
}, {
legendIndex: 3,
type: 'column',
name: 'Joe',
data: [4, 3, 3, 9, 0]
}, {
type: 'pie',
name: 'Total consumption',
data: [{
name: 'Jane',
y: 13,
color: Highcharts.getOptions().colors[0] // Jane's color
}, {
name: 'John',
y: 23,
color: Highcharts.getOptions().colors[1] // John's color
}, {
name: 'Joe',
y: 19,
color: Highcharts.getOptions().colors[2] // Joe's color
}],
center: [100, 80],
size: 100,
showInLegend: false,
dataLabels: {
enabled: false
}
}]
在这里,您可以找到图表如何使用此参数的示例: http://jsfiddle.net/aurvdk62/9/