messages.fieldMenu.reset String (default: "Reset")

The text of the reset button in the filter includes menu item.

Example

<div id="configurator"></div>
<script>
$("#configurator").kendoPivotConfiguratorV2({
    filterable: true,
    messages: {
        fieldMenu: {
            reset: "Clear"
        }
    },
    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