series.legendItem.line.opacityNumber
The opacity of the legend item of type line
.
Defaults to the series opacity.
Example - set the line legend item opacity
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
name: "Series A",
data: [1, 2, 3],
legendItem: {
line: {
opacity: 0.5
}
}
}]
});
</script>
In this article