in scripts/dashboard-importer/src/dashboards/converter/widgets/pie_chart.ts [20:38]
export function createPieChart(
title: string,
expression: Expression,
pieType?: 'pie' | 'donut',
): Widget {
return {
title,
pieChart: {
chartType: pieType === 'pie' ? 'PIE' : 'DONUT',
dataSets: [
{
timeSeriesQuery: {
prometheusQuery: expression?.expression,
},
},
],
},
};
}