options = {
'chart': {
'polar': 'true',
'type': 'line'
},
'title': {
'text': '策略风险分析',
'x': -80
},
'pane': {
'size': '80%'
},
'xAxis': {
'categories': ['风险', '稳定性', '盈利性', '频率',
],
'tickmarkPlacement': 'on',
'lineWidth': 0
},
'yAxis': {
'gridLineInterpolation': 'polygon',
'lineWidth': 0,
'min': 0
},
'tooltip': {
'shared': 'true',
'pointFormat': '<span style="color:{series.color}">{series.name}: <b>${point.y:,.0f}</b><br/>'
},
'legend': {
'align': 'right',
'verticalAlign': 'top',
'y': 70,
'layout': 'vertical'
},
'series': [{
'name': '策略全面性分析',
'data': [43000, 19000, 60000, 35000],
'pointPlacement': 'on'
}]
}
df = pd.DataFrame()
T.plot(df,options = options)