fontWeight String

The font weight of the text block.

Example - setting font weight to the text

<div id="diagram"></div>
<script>
  var diagram = kendo.dataviz.diagram;
  function getVisual(data) {
    var g = new diagram.Group();

    g.append(new diagram.Circle({
      width: 60,
      height: 60,
      fill: { color: "#add8e6" }
    }));

    g.append(new diagram.TextBlock({
      text: data.id,
      x: 18,
      y: 20,
      fontWeight: "bold"
    }));

    return g;
  };

  $("#diagram").kendoDiagram({
    layout: "tree",
    shapes: [{
      id: 123,
      visual: getVisual
    }]
  });
</script>
In this article