标签: spider-chart

具有多个y轴刻度的Highcharts极地蜘蛛

我用highcharts http://www.highcharts.com/demo/polar-spider创建了一个极地蜘蛛图,我想知道是否可以为每个类别设置比例(最小值和最大值).

charts data-visualization highcharts spider-chart

6
推荐指数
1
解决办法
1278
查看次数

最后的y轴标签未显示在highcharts蜘蛛网上

我有具有动态计算的x / y值的spiderweb highchart,并且除最后一个之外,y轴的所有标签均正确显示。有人有同样的问题吗?

function GenerateSpiderWebChart(conteinerId,categories,values, color) {

    $('#'+conteinerId).highcharts({

        chart: {
            polar: true,
            type: 'line',
            margin: 0
        },

        colors: [
            color
        ],

        exporting: {
            enabled: false,
            buttons: {
                enabled: false
            }
        },

        title: {
            text: '&nbsp',
            x: -80,
            useHTML: true
        },

        pane: {
            size: '70%'
        },

        xAxis: {
            categories: categories,
            tickmarkPlacement: 'on',
            lineWidth: 0,
            labels: {
                align: 'center',
                distance: 43
            }
        },

        yAxis: {
            gridLineInterpolation: 'polygon',
            lineWidth: 0,
            min: 0,
            endOnTick: true
        },

        tooltip: {
            shared: true,
            headerFormat: '<span style="font-size: …
Run Code Online (Sandbox Code Playgroud)

highcharts spider-chart

2
推荐指数
1
解决办法
1657
查看次数