黄线内的空间我也想用黄色填充起来:chart image
w9apscun1#
只是用面积系列类型代替线:
chart: { polar: true }, series: [{ type: 'area', data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175] }]
现场演示:http://jsfiddle.net/BlackLabel/67oxc5pt/文件:https://www.highcharts.com/docs/chart-concepts/series
arknldoa2#
使用Plotly编写的Python雷达图
对于雷达图中的填充线,使用fig.update_traces更新使用px.line_polar创建的图形
import plotly.express as px import pandas as pd df = pd.DataFrame(dict( r=[5, 4, 3, 1, 3], theta=['Social','Tech','Environmental', 'Economical', 'Cultural'])) fig = px.line_polar(df, r='r', theta='theta', line_close=True) fig.update_traces(fill='toself') fig.show()
Output image
2条答案
按热度按时间w9apscun1#
只是用面积系列类型代替线:
现场演示:http://jsfiddle.net/BlackLabel/67oxc5pt/
文件:https://www.highcharts.com/docs/chart-concepts/series
arknldoa2#
使用Plotly编写的Python雷达图
对于雷达图中的填充线,使用fig.update_traces更新使用px.line_polar创建的图形
Output image