valueAxisArray

The value axis configuration options.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    valueAxis: {
        min: 0,
        max: 100,
        title: {
            text: "Value"
        }
    },
    series: [{
        type: "line",
        data: [
            { date: new Date(2023, 0, 1), value: 10 },
            { date: new Date(2023, 0, 2), value: 20 },
            { date: new Date(2023, 0, 3), value: 15 }
        ]
    }]
});
</script>

Related Properties

In this article
valueAxisRelated Properties
Not finding the help you need?
Contact Support