Reputation: 36764
How can I set the background image for a Kendoui chart?
Upvotes: 2
Views: 1920
Reputation: 20203
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.
Upvotes: 3