xAxisArray
The X-axis configuration options of the scatter chart X-axis. Supports all valueAxis options.
Example - set the scatter chart x axis
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ type: "scatter", data: [[1, 2]] }
],
xAxis: {
color: "red",
min: -5,
max: 5,
labels: {
background: "green",
color: "white"
}
}
});
</script>
In this article