Highcharts Polar Chart 是否可以用曲线连接点?
Is it possible with Highcharts Polar Chart to have curved lines connecting the points?
我正在考虑使用 Highcharts 来替代 Google 图像图表。
Google 图像图表上的极坐标(雷达)图可以选择图表类型 'rs',它用曲线而不是直线连接图表上的点。
Google Image Charts - Radar Chart
这在 Highcharts 7.x 中可能吗?我正在浏览在线文档中的选项,但我没有在任何地方看到指定的选项,而且当我尝试搜索它时,我一直在获取样条曲线图信息。
polar
选项独立于图表type
,因此您可以同时使用这两个选项:
chart: {
polar: true,
type: 'spline'
},
或指定系列类型:
chart: {
polar: true
},
series: [{
type: 'spline',
data: [...]
}, {
type: 'column',
data: [...]
}]
现场演示:https://jsfiddle.net/BlackLabel/zp7vna4f/
API参考:
我正在考虑使用 Highcharts 来替代 Google 图像图表。
Google 图像图表上的极坐标(雷达)图可以选择图表类型 'rs',它用曲线而不是直线连接图表上的点。
Google Image Charts - Radar Chart
这在 Highcharts 7.x 中可能吗?我正在浏览在线文档中的选项,但我没有在任何地方看到指定的选项,而且当我尝试搜索它时,我一直在获取样条曲线图信息。
polar
选项独立于图表type
,因此您可以同时使用这两个选项:
chart: {
polar: true,
type: 'spline'
},
或指定系列类型:
chart: {
polar: true
},
series: [{
type: 'spline',
data: [...]
}, {
type: 'column',
data: [...]
}]
现场演示:https://jsfiddle.net/BlackLabel/zp7vna4f/
API参考: