categoryAxis.visible Boolean (default: true)

If set to true the chart will display the category axis. By default the category axis is visible.

Example - hide the category axis

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  categoryAxis: {
    categories: [
      new Date("2011/12/20"),
      new Date("2011/12/21")
    ],
    visible: false
  },
  series: [
    { data: [1, 2, 3] }
  ]
});
</script>
In this article