subtitle.background String (default: "white")

    The background color of the subtitle. Accepts a valid CSS color string, including hex and rgb.

    Example - configure the chart subtitle alignment

    Open In Dojo
    <div id="chart"></div>
    <script>
    $("#chart").kendoChart({
      title: {
        text: "Title"
      },
      subtitle: {
        text: "Subtitle",
        background: "green"
      },
      series: [
        { data: [1, 2] }
      ]
    });
    </script>
    In this article