Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使highcharts 堆积柱形百分比图超过 100%。我正在使用堆叠列来衡量某些指标,当它们“溢出”时,我希望相关列超过 100%。
例如,附表中“pop”条的红色部分应高于 100%
仅供其他人将来参考,使用 highcharts 的堆叠百分比功能没有“内置”解决此问题的方法。我必须建立一个普通的堆叠图表,只需将数据和 Y 轴标签转换为百分比格式。
当我想loop通过一个array并在每个后面添加一个字符串element时,
loop
array
element
我可以
for(var x in array){ array[x] += "string"; }