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 - set the legend item type
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
name: "Series A",
data: [1, 2, 3],
legendItem: {
type: "area"
}
}]
});
</script>