paneDefaultsObject
The default options for all panes.
Example - configure the paneDefaults
<div id="chart"></div> <script> $("#chart").kendoChart({ paneDefaults: { background: "lightgray", border: { color: "blue", width: 1 } }, series: [ { data: [1, 2, 3] } ] }); </script> In this article