<div id="chart"></div><script>$("#chart").kendoChart({ categoryAxis: [{ justified: true, categories: ["2012", "2013"] }], series: [ { type: "line", data: [1, 2, 3] }, { type: "bar", data: [1, 2, 3] } ]});</script>
What I'm trying to do here is I want to justify both line and bar chart so that there is no space in the beginning and also at the end. But I cannot use justify since categoryAxis.justified is only works with line chart. Is there any other option I can use to that both line and bar chart can justify.