navigator.categoryAxis.visibleBoolean(default: true)
If set to true the chart will display the category axis. By default the category axis is visible.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
categoryAxis: {
visible: false
}
},
dataSource: {
data: [
{ date: new Date("2012/01/01"), value: 1 },
{ date: new Date("2012/01/15"), value: 2 },
{ date: new Date("2012/02/01"), value: 3 }
]
},
dateField: "date",
valueField: "value"
});
</script>
If set to true the chart will display the category axis. By default the category axis is visible.
In this article