messages.fieldMenu.moveToRows String (default: "Move to Rows")

    The text of the move to rows action in the menu.

    Example

    Open In Dojo
    <div id="configurator"></div>
    <script>
    $("#configurator").kendoPivotConfiguratorV2({
        filterable: true,
        messages: {
            fieldMenu: {
                moveToRows: "Move to Rows"
            }
        },
        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