【问题标题】:Polar type chart with Highcharts plugin带有 Highcharts 插件的极坐标图
【发布时间】:2015-04-05 03:24:43
【问题描述】:

我正在尝试制作一个极坐标图,类似于此: http://star-board-sup.com/2015/wp-content/uploads/2014/09/11_6x30_astro_touring.png

基本上我有 4 个值,范围从 1 到 10,并且需要它们以像上面这样的方式显示......所以在轴上伸展。你能用 Highcharts 帮我完成吗?看起来类似于他们的极坐标图,但我不知道如何显示它。

感谢大家的帮助

【问题讨论】:

    标签: javascript charts highcharts


    【解决方案1】:

    这是重建极坐标图的简单尝试: http://jsfiddle.net/c6unynr2/

    这个选项应该可以满足您的大部分需求:

    chart: {
        polar: true
    },
    
    xAxis: {
        categories: ['Tracking', 'Maneuverability', 'Stability', 'Speed'],
        tickmarkPlacement: 'on',
        lineWidth: 0            
    },
    
    yAxis: {
        lineWidth: 0,
        min: 0,
        max: 10,
        tickmarkPlacement: 'on'
    },
    
    
    series: [{
        type: 'line',
        name: 'Line',
        data: [1, 2, 3, 4]
    }]
    

    【讨论】:

      猜你喜欢
      • 2013-06-18
      • 2013-10-03
      • 1970-01-01
      • 2016-01-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-05-31
      • 1970-01-01
      相关资源
      最近更新 更多