pdf.keywords String (default: null)

    Specifies the keywords of the exported PDF file.

    Example - set the keywords

    Open In Dojo
    <div id="pivotgrid"></div>
    <script>
    $("#pivotgrid").kendoPivotGridV2({
        pdf: {
            keywords: "northwind products"
        },
        height: 550,
        dataSource: {
            type: "xmla",
            columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Geography].[City]" } ],
            rows: [{ name: "[Product].[Product]" }],
            measures: ["[Measures].[Internet Sales Amount]"],
            transport: {
                connection: {
                    catalog: "Adventure Works DW 2008R2",
                    cube: "Adventure Works"
                },
                read: 'https://demos.telerik.com/olap/msmdpump.dll'
            }
        }
    });
    </script>
    In this article