Radar Chart in a Subplot created by a loop

dfradar
Date,Parameters,Total
2020-02-17,T,0.28
2015-03-24,T,0.18
2015-11-21,T,0.19
2015-02-21,T,0.20
2020-02-17,W,0.81
2015-03-24,W,0.29
2015-11-21,W,0.19
2015-02-21,W,0.37
2020-02-17,S,0.19
2015-03-24,S,0.15
2015-11-21,S,0.06
2015-02-21,S,0.04
2020-02-17,P,0.39
2015-03-24,P,0.48
2015-11-21,P,0.34
2015-02-21,P,0.42

image
Hi I am creating subplots with bar, line and a radar chart. I create all charts always from loop because it should be flexible on my data (sometimes 3,4,5,6… dates)

this is what i tried, tried also scatterpolar…

for i,j in zip(dfradar.Date,range(len(dfradar.Date.unique()))):

     figd.append_trace(go.Barpolar(
            
            r = dfradar["Total"],
            theta = dfradar["Parameters"],
            legendgroup='group'+str(i),
            marker=dict(color=c1[j]),
            showlegend=False,
            
             ),2,1
         )

how to create a radar chart looking similar to this spyderwebchart? Important is to create this from a loop!