series.legendItem.area.opacityNumber

The opacity of the legend item. Defaults to the series opacity.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [
            { date: new Date(2000, 1, 1), open: 10, high: 15, low: 8, close: 12 },
            { date: new Date(2000, 1, 2), open: 12, high: 18, low: 10, close: 16 }
        ]
    },
    dateField: "date",
    series: [{
        type: "area",
        field: "close",
        legendItem: {
            area: {
                opacity: 0.7
            }
        }
    }]
});
</script>
In this article
series.legendItem.area.opacity
Not finding the help you need?
Contact Support