panes.title.positionString(default: "center")

The position of the title.

"left"

The pane title is positioned on the left

"right"

The pane title is positioned on the right

"center"

The pane title is positioned in the center

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [{
            date: new Date(2016, 0, 1),
            close: 41,
            volume: 2632000
        }, {
            date: new Date(2016, 0, 2),
            close: 42,
            volume: 2631000
        }]
    },
    series: [{
        field: "close",
        name: "Price"
    }],
    panes: [{
        name: "default",
        title: {
            text: "Stock Price",
            position: "left"
        }
    }]
});
</script>
In this article
panes.title.position
Not finding the help you need?
Contact Support