Brian Boatright
Brian Boatright

Reputation: 36764

How to set a Background Image for a Kendo DataViz Chart

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

Upvotes: 2

Views: 1920

Answers (1)

Petur Subev
Petur Subev

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

Related Questions