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