gpt4 book ai didi

svg - 如何将 xmlns 和 xlink 属性插入到 c3 图表生成的 svg 元素/标签中?

转载 作者:行者123 更新时间:2023-12-04 17:52:30 26 4
gpt4 key购买 nike

我计划使用 https://github.com/Xportability/css-to-pdf 导出 c3 图表.但是 CSS2PDF 要求 SVG 标签包含属性 xmlns="http://www.w3.org/2000/svg"和 xmlns:xlink="http://www.w3.org/1999/xlink"对导出有效。

如何将这两个属性添加到c3图表生成的svg元素中?

最佳答案

$(document).ready(function () {
var svg = $('#chart').find('svg')[0];
svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
svg.setAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink');

});

关于svg - 如何将 xmlns 和 xlink 属性插入到 c3 图表生成的 svg 元素/标签中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43466728/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com