I am using kendo diagram with visualTemplate
http://demos.telerik.com/kendo-ui/diagram/index
I need to write name with bold font
g.append(new dataviz.diagram.TextBlock({
text: textBlock.label,
x: textBlock.x,
y: textBlock.y,
bold: true // <--- ???
}));
and job title using normal font
What are workarounds?