legend.labels.fontString(default: "12px Arial,Helvetica,sans-serif")
The font style of the labels.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
legend: {
labels: {
font: "14px Verdana"
}
},
series: [{
type: "line",
data: [
{ date: new Date(2023, 0, 1), value: 10 },
{ date: new Date(2023, 0, 2), value: 25 },
{ date: new Date(2023, 0, 3), value: 15 }
],
}]
});
</script>
In this article