legend.item.line.opacityNumber

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

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [
            { date: new Date(2023, 0, 1), value: 100 },
            { date: new Date(2023, 0, 2), value: 105 },
            { date: new Date(2023, 0, 3), value: 98 }
        ]
    },
    legend: {
        item: {
            line: {
                opacity: 0.6
            }
        }
    },
    series: [{
        type: "line",
        field: "value",
        categoryField: "date",
        name: "Stock Price"
    }]
});
</script>
In this article
legend.item.line.opacity
Not finding the help you need?
Contact Support