我在 highcharts.js 中需要这个:
- 两列
- 图例中的两个项目 - 每个用于具有自己颜色的列
- 每列的标签底部
正如您在底部放置的图像上看到的那样
我有这个 - jsfiddle - 但传说只有一个项目..
var options = {
"chart":{
'renderTo': 'container',
"type":"column"
},
"title":{
"text":"",
"style":{
"display":"none"
}
},
"xAxis":{
"categories":[
"Average",
"Your value"
],
"title":{
"text":"x label",
"style":{
"font":"bold 16px Verdana",
"color":"#000"
}
}
},
"yAxis":{
"min":0,
"title":{
"text":"y label",
"style":{
"font":"bold 16px Verdana",
"color":"#000"
}
}
},
"legend":{
"align":"center",
"itemDistance":20,
"verticalAlign":"top",
"margin":25,
"floating":false,
"borderColor":"#CCC",
"borderWidth":1,
"shadow":false,
"borderRadius":0
},
"series":[
{
"color":"#0066FF",
"data":[
{
"y":50,
"color":"#372A4B"
},
{
"y":30,
"color":"#1EC37A"
}
]
}
]
};
var chart = new Highcharts.Chart(options);
或者这个 - jsfiddle - 但每列没有底部标签
var options = {
"chart":{
'renderTo': 'container',
"type":"column"
},
"title":{
"text":"",
"style":{
"display":"none"
}
},
"xAxis":{
"categories":[
["Average"],
["Your value"]
],
"title":{
"text":"x label",
"style":{
"font":"bold 16px Verdana",
"color":"#000"
}
}
},
"yAxis":{
"min":0,
"title":{
"text":"y label",
"style":{
"font":"bold 16px Verdana",
"color":"#000"
}
}
},
"legend":{
"align":"center",
"itemDistance":20,
"verticalAlign":"top",
"margin":25,
"floating":false,
"borderColor":"#CCC",
"borderWidth":1,
"shadow":false,
"borderRadius":0
},
labels: {
items: [{
html: "Legend 1",
style: {
top: '10px',
left: '20px',
height: '30px'
}
}, {
html: "Legend 2",
style: {
top: '10px',
left: '120px',
height: '30px'
}
}]
},
"series":[
{
"color":"#372A4B",
"name": "Average",
"data":[
{
"y":50
}
]
},
{
"color":"#1EC37A",
"name": "Your value",
"data":[
{
"y":30,
}
]
}
]
};
var chart = new Highcharts.Chart(options);
但我需要的正是你在这张图片上看到的: