我正在尝试稍微调整一下 google chart api,以便可以使用图像更改默认圆形标记。我正在考虑通过设置要使用的 svg 圆圈的图像模式来做到这一点。我应该很接近,但由于某种原因它似乎不起作用。
完整代码在这里:http: //jsfiddle.net/PVkbM/1/
这是代码的一部分。
google.visualization.events.addListener(chart, 'ready', function () {
var patt = document.createElement('pattern');
patt.setAttribute('id', 'img1');
patt.setAttribute('patternUnits', 'userSpaceOnUse');
patt.setAttribute('width', '20');
patt.setAttribute('height', '20');
patt.setAttribute('x', '0');
patt.setAttribute('y', '0');
var image = document.createElement('image');
image.setAttribute('xlink:href', 'https://www.google.com/images/srpr/logo3w.png');
image.setAttribute('x', '0');
image.setAttribute('y', '0');
image.setAttribute('width', '24');
image.setAttribute('height', '24');
var defs = document.getElementsByTagName('defs')[0];
patt.appendChild(image);
defs.appendChild(patt);
//This works
//document.getElementsByTagName('circle')[0].setAttribute("fill", "#FFF");
document.getElementsByTagName('circle')[0].setAttribute("fill", "url(#img1)");
});
chart.draw(data, options);
据我所知,代码在 <defs> 中添加了新的 <pattern>,但它不起作用。我错过了什么吗?