我正在尝试将过滤器应用于我的 JS 对象,其中<%=strKey%>
是动态脚本对象名称,因此,每次迭代,名称都会更改。
// dynamically writing JS - key value is the chart name
var <%=strKey%> = am4core.create("<%=strKey%>", am4charts.GaugeChart); // has to mach the HTML IDs
<%=strKey%>.innerRadius = am4core.percent(82); // innerRadius begins at 82%, leaving white-space inside the gauge
该文档仅列出 JSON 格式。我将如何将其应用于我的实施?
我实际上是想让阴影出现在半圆形仪表下。请问有什么建议吗?