# Function toPivotTableProps

toPivotTableProps(widgetModel): PivotTableProps

Translates a WidgetModel to the props for rendering a pivot table.

# Parameters

Parameter Type
widgetModel WidgetModel

# Returns

PivotTableProps

# Example

<script setup lang="ts">
import { widgetModelTranslator, useGetWidgetModel, PivotTable } from '@sisense/sdk-ui-vue';
import { computed } from 'vue';

const { data: widgetModel } = useGetWidgetModel({
 dashboardOid: 'your-dashboard-oid',
 widgetOid: 'your-widget-oid',
});

const pivotTableProps = computed(() =>
 widgetModel.value ? widgetModelTranslator.toPivotTableProps(widgetModel.value) : null,
);
</script>

<template>
 <PivotTable
   v-if="pivotTableProps"
   :dataSet="pivotTableProps.dataSet"
   :dataOptions="pivotTableProps.dataOptions"
   :filters="pivotTableProps.filters"
   :styleOptions="pivotTableProps.styleOptions"
 />
</template>

Note: this method is not supported for chart or table widgets. Use toChartProps instead for getting props for the Chart. Use toTableProps instead for getting props for the Table.