将 Highcharts 图表添加到 draw2d canvas

Adding Highcharts chart to draw2d canvas

我想知道是否可以将使用 Highcharts 制作的图表添加到 draw2d canvas 中。我尝试使用 class 导入外部 SVG SVGFigure, but it seems like the SVG is too complex to be used with this class according to this and my test

draw2d.SVGFigure;

感谢您的建议:)

我想出了一个解决方案,将 svg 转换为图像并使用 SetFigure class 从 draw2d 到将其插入 canvas.

draw2d.SetFigure;

您可以找到使用 canvg 或 vanilla js 实现的示例 here