series.legendItem.typeString
Sets the type of the legend items. The default value is based on the series type.
The supported values are:
"line"—the legend items are rendered as a line. This is the default value for line charts.
"area"—the legend items are rendered as a filled rectangle. This is the default value for area charts.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: new Date(2023, 1, 1), value: 100 },
{ date: new Date(2023, 1, 2), value: 105 },
{ date: new Date(2023, 1, 3), value: 98 }
]
},
categoryField: "date",
series: [{
type: "line",
field: "value",
legendItem: {
type: "area"
}
}]
});
</script>