# Function toPivotTableWidgetProps

toPivotTableWidgetProps(widgetModel): PivotTableWidgetProps

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

# Parameters

Parameter Type
widgetModel WidgetModel

# Returns

PivotTableWidgetProps

# Example

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

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

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

Note: this method is not supported for chart or table widgets. Use toChartWidgetProps instead for getting props for the ChartWidget.