highcharts 高排行榜:pattern-fill无法与导出服务器一起使用

drkbr07n  于 2022-11-10  发布在  Highcharts
关注(0)|答案(1)|浏览(187)

我正在尝试使用模块pattern-fill导出图表,但它无法与导出服务器一起使用
下面是jsfiddle:https://jsfiddle.net/vs9hjne5/4/
我在页面https://export.highcharts.com/中使用相同的配置

以下是export.highcharts服务的属性:

{
 "series":[
  {
    "color":{
      "pattern":{
        "path":{
          "strokeWidth":1,
          "d":"M 0 0 L 10 10 M 9 -1 L 11 1 M -1 9 L 1 11"
        },
        "backgroundColor":"#5B799E",
        "color":"#F6A800",
        "width":10,
        "opacity":1,
        "height":10
      }
    },
    "data":[[1,10]],
    "type":"column"
  }
 ]
}

如果我将color属性从

"color":{
      "pattern":{
        "path":{
          "strokeWidth":1,
          "d":"M 0 0 L 10 10 M 9 -1 L 11 1 M -1 9 L 1 11"
        },
        "backgroundColor":"#5B799E",
        "color":"#F6A800",
        "width":10,
        "opacity":1,
        "height":10
      }
    }

"color":"red"

它工作

如何使用导出服务器导出带有模块模式填充的图表?
edit:我找到了一个解决方案,我必须修改build.js文件,在node_modules/highcharts-export-server目录中的变量cdnScriptsCommon中添加“{{version}}/modules/pattern-fill.js”,执行node build.js重新生成服务并重启服务

5rgfhyps

5rgfhyps1#

我找到了一个解决方案,我必须修改build.js文件,在node_modules/highcharts-export-server目录下添加“{{version}}/modules/pattern-fill.js”,执行node build.js重新生成服务并重启服务

相关问题