axisDefaultsObject
The default options for all chart axes. Accepts the options supported by categoryAxis, valueAxis, xAxis and yAxis.
Example - set the default axis options
<div id="chart"></div> <script> $("#chart").kendoChart({ axisDefaults: { categories: [ "2012", "2013"] }, series: [ { data: [1, 2, 3] } ] }); </script> In this article