2

How can I set the background image for a Kendoui chart?

kmp
  • 10,535
  • 11
  • 75
  • 125
Brian Boatright
  • 36,294
  • 34
  • 81
  • 102

1 Answers1

3

Basically you need to apply that background style to the element from which you initialize the chart.

e.g.

<div id="chart" style="background: center no-repeat url('someImage.png');"></div>

Like in this online demo.

Petur Subev
  • 19,983
  • 3
  • 52
  • 68
  • 1
    Tried the same thing for Kendo Stockchart but couldn't make it work as in this [Example](http://jsbin.com/izuyoz/6/). Can you please check what might be the problem? – Naga Kiran Nov 30 '12 at 05:45