pdf.subject String (default: null)

    Sets the subject of the PDF file.

    Example - set the subject

    Open In Dojo
    <div id="chart"></div>
    <script>
      $("#chart").kendoChart({
          pdf: {
              subject: "Products"
          },
          legend: {
              position: "bottom"
          },
          series: [
              { name: "Series 1", data: [1, 2, 3] },
              { name: "Series 2", data: [3, 4, 5] }
          ]
      });
    
      var chart = $("#chart").getKendoChart();
      chart.saveAsPDF();
    </script>
    In this article