如何在 Highcharts 中创建规范的 3d 图?
How to create a canonical 3d plot in Highcharts?
我将如何继续并在 Highcharts 中创建类似 JMP Canonical 3D Plot 的东西来显示具有一定透明度的各种大小的三维球体,同时仍然能够绘制奇异值(如中的小点)下图)?我想 3D Scatter Plot 是一种可行的方法,但我看不到在各个球体上设置不同尺寸的可能性。
来自 https://www.jmp.com/support/help/en/15.1/index.shtml#page/jmp/example-of-a-canonical-3d-plot.shtml
的规范 3D 图示例
您可以通过marker.radius
更改单个散点的大小。示例:
data: [
{ x: 1, y: 6, z: 5, marker: { radius: 10 } },
{ x: 8, y: 7, z: 9, marker: { radius: 50 } },
...
]
现场演示: https://jsfiddle.net/BlackLabel/0fnx5ued/
API参考:https://api.highcharts.com/highcharts/series.scatter3d.data.marker.radius
我将如何继续并在 Highcharts 中创建类似 JMP Canonical 3D Plot 的东西来显示具有一定透明度的各种大小的三维球体,同时仍然能够绘制奇异值(如中的小点)下图)?我想 3D Scatter Plot 是一种可行的方法,但我看不到在各个球体上设置不同尺寸的可能性。
来自 https://www.jmp.com/support/help/en/15.1/index.shtml#page/jmp/example-of-a-canonical-3d-plot.shtml
的规范 3D 图示例您可以通过marker.radius
更改单个散点的大小。示例:
data: [
{ x: 1, y: 6, z: 5, marker: { radius: 10 } },
{ x: 8, y: 7, z: 9, marker: { radius: 50 } },
...
]
现场演示: https://jsfiddle.net/BlackLabel/0fnx5ued/
API参考:https://api.highcharts.com/highcharts/series.scatter3d.data.marker.radius