我想使用Highcharts将条形图添加到条形图中,并将其显示在UIWebView
中。
到目前为止,我一直在使用这个小插件,它在最新的Chrome中运行良好。 但是,只要我将其加载到UIWebView中,就不会显示图像。 我认为这与iOS可能无法解析图像文件的正确路径有关吗?
是否有另一种(更简单的)方法可以将背景图像添加到条形图中?
在我的Highcharts数据系列
中color: {
pattern: 'static/img/theimage.png',
width: 160,
height: 500
}
插件
/**
* Highcharts pattern fill plugin
*/
(function() {
var idCounter = 0,
base = Highcharts.Renderer.prototype.color;
Highcharts.Renderer.prototype.color = function(color, elem, prop) {
if (color && color.pattern && prop === 'fill') {
// SVG renderer
if (this.box.tagName == 'svg') {
var id = 'highcharts-pattern-'+ idCounter++;
var pattern = this.createElement('pattern')
.attr({
id: id,
patternUnits: 'userSpaceOnUse',
width: color.width,
height: color.height
})
.add(this.defs),
image = this.image(
color.pattern, 0, 0, color.width, color.height
)
.add(pattern);
return 'url(' + this.url + '#' + id + ')';
// VML renderer
} else {
var markup = ['<', prop, ' type="tile" src="', color.pattern, '" />'];
elem.appendChild(
document.createElement(this.prepVML(markup))
);
}
} else {
return base.apply(this, arguments);
}
};
})();
答案 0 :(得分:2)
我遇到了类似的问题,因为我的iPad没有显示我的渐变背景。
我最后通过在我的JS中使用backgroundColor:null并在ID上使用CSS3渐变并声明DIV的高度来解决这个问题。这很可能也适用于背景图像。