shapes.content.fontFamilyString
The font family of the shape content text.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
x: 100,
y: 100,
content: {
text: "Custom Font",
fontFamily: "Arial"
}
}]
});
</script>
In this article