Highcharts极地风玫瑰图表与梯形形式的段

时间:2017-07-06 15:20:28

标签: javascript extjs highcharts extjs6.2

我正在使用extjs和highcharts开发风玫瑰图表。我需要将数据显示为具有直边的梯形,而不是以弧作为分隔符的段的默认显示。这是我想要做的事情的图像

enter image description here

我已经能够使用JoeKuan提供的包装器将highcharts对象集成到我的应用程序中

但是我没有在highcharts文档中看到如何将极坐标图列配置为直边线段,如图所示..

这是极地图表的一个小提琴,因为它目前有效.. Fiddle

Highcharts.chart('container', {
    data: {
        table: 'freq',
        startRow: 1,
        endRow: 17,
        endColumn: 7
    },

    chart: {
        polar: true,
        type: 'column'
    },

    title: {
        text: 'Wind rose for South Shore Met Station, Oregon'
    },

    subtitle: {
        text: 'Source: or.water.usgs.gov'
    },

    pane: {
        size: '85%'
    },

    legend: {
        align: 'right',
        verticalAlign: 'top',
        y: 100,
        layout: 'vertical'
    },

    xAxis: {
        tickmarkPlacement: 'on'
    },

    yAxis: {
        min: 0,
        endOnTick: false,
        showLastLabel: true,
        title: {
            text: 'Frequency (%)'
        },
        labels: {
            formatter: function () {
                return this.value + '%';
            }
        },
        reversedStacks: false
    },

    tooltip: {
        valueSuffix: '%'
    },

    plotOptions: {
        series: {
            stacking: 'normal',
            shadow: false,
            groupPadding: 0,
            pointPlacement: 'on'
        }
    }
});

所有帮助非常感谢

莉莎

1 个答案:

答案 0 :(得分:0)

您希望type: 'area'实现该可视化。

Highcharts.chart('container', {
    data: {
        table: 'freq',
        startRow: 1,
        endRow: 17,
        endColumn: 7
    },

    chart: {
        polar: true,
        type: 'area'
    },

http://jsfiddle.net/0mb1s1jd/1/