paneDefaults.title.backgroundString
The background color of the title. Accepts a valid CSS color string, including hex and rgb.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
paneDefaults: {
title: {
background: "lightblue"
}
},
panes: [
{ name: "main-pane", title: { text: "Pane Title" } }
],
series: [
{ name: "Series 1", data: [1, 2, 3] }
]
});
</script>
In this article