shapes.content.fontWeightString
The font weight of the shape content text.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
x: 100,
y: 100,
content: {
text: "Bold Text",
fontWeight: "bold"
}
}]
});
</script>
In this article