0

チャートで 8 番目の軸(「aufgabenorientiert」と呼ばれる)を表示するにはどうすればよいですか?

http://jsfiddle.net/7k8wY/3/

私はそれを管理しようとしました:

series: [{
    name: 'User',
    data: [[0, 29], [2, 25], [4, 24], [6, 22]],
    pointPlacement: 'on'
}]

何か案は?

前もって感謝します

4

1 に答える 1

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 つのカテゴリがあるので、セリエ ポイントの 1 つも 7 にする必要があります...理解していただければ幸いです :)

このように、表示されていないものは...ポリゴンのカテゴリの数と頂点の数を数えています;)

サルドス。

于 2013-03-29T21:07:43.123 に答える