series.xField String
(default: "x")
The data item field containing the X value.
The
xField
option is supported when series.type is set to "bubble", "scatter", "scatterLine" or polar series.
Example - set the chart series x field
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
type: "bubble",
xField: "price",
data: [
{ price: 1, y: 2, size: 3 }
]
}]
});
</script>