2

我想使用 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);
        }
    };    
})();
4

1 回答 1

2

我遇到了类似的问题,因为我的 iPad 没有显示我的渐变背景。

最后我通过在我的 JS 中放置 backgroundColor: null 并在 ID 上使用 CSS3 渐变并声明 DIV 的高度来解决这个问题。这很可能也适用于背景图像。

于 2012-06-20T07:52:43.927 回答