score:2

Accepted answer

Try to use full path, for example: http://jsfiddle.net/F4qS8/704/ this works fine.

chart: {
    renderTo: 'container',
    events: {
        load: function () {

            this.renderer.image('http://highcharts.com/demo/gfx/sun.png', 100, 100, 30, 30)
                .add();
        }
    }
},

Related Query