Spider highChart-水平方向

问题描述 投票:0回答:1

我正在使用highCharts.js的spiderChart。

默认情况下,蜘蛛网具有垂直方向。

我希望蜘蛛显示在水平方向。

例如,当我只有两点并且论坛只是简单的线时,我想看到水平线而不是垂直线。

或者当我有6个点并且蜘蛛形状为六边形时,我希望蜘蛛的顶部成为六边形肋之一,而不是顶点之一。

我在此处附上图片以便于理解:

enter image description here

enter image description here

highcharts
1个回答
1
投票
pointPlacement属性将在水平方向上绘制图表。

series: [{ name: 'Allocated Budget', data: [43000, 19000, 60000, 35000, 17000, 10000], //pointPlacement: 'on' }, { name: 'Actual Spending', data: [50000, 39000, 42000, 31000, 26000, 14000], //pointPlacement: 'on' }], 演示:https://jsfiddle.net/BlackLabel/95av36ms/

API:https://api.highcharts.com/highcharts/series.line.pointPlacement
© www.soinside.com 2019 - 2024. All rights reserved.