series.widthNumber

The line width.

** Applicable for area and line series. **

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [
            { date: "2013/01/01", value: 40 },
            { date: "2013/01/02", value: 42 }
        ]
    },
    series: [{
        type: "line",
        field: "value",
        width: 5
    }],
    categoryAxis: {
        field: "date"
    }
});
</script>
In this article
series.width
Not finding the help you need?
Contact Support