xAxis.visible Boolean
(default: true)
If set to true
the chart will display the x axis. By default the x axis is visible.
Example - hide the scatter chart x axis
<div id="chart"></div>
<script>
$("#chart").kendoChart({
xAxis: {
visible: false
},
series: [
{ type: "scatter", data: [[1, 2]] }
]
});
</script>