如何在我的图表中查看第8轴(称为“aufgabenorientiert”)?
我试图通过以下方式来管理:
series: [{
name: 'User',
data: [[0, 29], [2, 25], [4, 24], [6, 22]],
pointPlacement: 'on'
}]
任何想法?
提前致谢
答案 0 :(得分:1)
您的代码应如下所示:
$(function () {
$('#container').highcharts({
chart: {
renderTo: 'disg_model',
polar: true,
type: 'line'
},
title: {
text: ''
},
xAxis: {
categories: ['Dominant', 'extrovertiert', 'Initiativ', 'menschen-orientiert', 'Stetig', 'introvertiert', 'Gewissenhaft', 'aufgabenorientiert', ''],
tickmarkPlacement: 'on',
lineWidth: 0,
showEmpty: true,
showLastLabel: true
},
yAxis: {
gridLineInterpolation: 'polygon',
lineWidth: 0,
min: 0
},
tooltip: {
shared: true,
pointFormat: '<span style="color:{series.color}">{series.name}: <b>{point.y}</b><br/>'
},
legend: {
align: 'right',
verticalAlign: 'top',
y: 100,
layout: 'vertical'
},
series: [{
name: 'Reto Strub',
data: [[0, 29], [2, 25], [4, 24], [6, 22], [7, 22], [6, 22]],
pointPlacement: 'on'
}]
});
});
这是另一种方式,没有任何附加点:
series: [{
name: 'Reto Strub',
data: [[0, 29], [2, 25], [4, 24], [7, 22]],
pointPlacement: 'on'
}]
你有7个类别,所以其中一个系列也应该是7个......我希望你明白:)
这样,它显示的遗失的一个......计算了你的poligon上的类别数和vertix数;)
Saludos。