是否有使用 highcharts 或任何其他库在 Web 应用程序中绘制 3D 多时间线系列的解决方案

Is there a solution to plot 3D multiple time line series in web application using highcharts or any other libraries

我正在尝试绘制 3D .NET 网络图表以显示时间与温度线,Z 轴显示每个月的曲线。我正在寻找一种类似于下图所示的解决方案。

使用Highcharts中的scatter3d系列应该可以实现。因为我不是.NET开发者所以我在Highcharts JS中准备了一个基本的演示如何实现类似的图表。

演示:https://jsfiddle.net/BlackLabel/r1Lant7p/

  chart: {
    renderTo: 'container',
    type: 'scatter3d',
    options3d: {
      enabled: true,
      alpha: 10,
      beta: 30,
      depth: 250,
      viewDistance: 5,
      fitToPlot: false,
    }
  },

这里是 Highcharts.NET 包装器中 scatter3d 图表的基本演示:https://dotnet.highcharts.com/Highcharts/Demo/Gallery?demo=Scatter3d&theme=default

API: https://dotnet.highcharts.com/Help/Highcharts/html/index.html