optionsObject

The initial values of all options.

Example

<script>
    var options = new kendo.drawing.OptionsStore({
        title: "My Chart",
        series: {
            type: "line",
            color: "#ff0000"
        },
        categoryAxis: {
            labels: {
                font: "12px Arial"
            }
        }
    });
    
    console.log(options.get("title")); // "My Chart"
    console.log(options.get("series.type")); // "line"
</script>
In this article
options
Not finding the help you need?
Contact Support