valueAxis.nameObject(default: "primary")
The unique axis name.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
name: "customAxis"
},
series: [{
data: [10, 15, 8, 12]
}]
});
</script>