how do I force position of categoryAxis labels to bottom?
$(".kpi-development-chart", row).kendoChart({
theme: "bootstrap",
chartArea: {
height: 200
},
dataSource: {
data: dev
},
title: {
text: data[i].name
},
legend: {
visible: false
},
seriesDefaults: {
type: "line",
style: "smooth",
labels: {
visible: false,
background: "transparent"
}
},
series: [{
field: "data"
}],
valueAxis: {
plotBands: dataTypeRanges,
visible: false
},
categoryAxis: {
field: "date",
type: "date",
labels: {
mirror: true
}
}
});