如何更改由 highcharts 创建的折线图(极坐标图)所包围的内部部分的样式?

3xiyfsfu  于 2022-11-11  发布在  Highcharts
关注(0)|答案(2)|浏览(179)

黄线内的空间我也想用黄色填充起来:chart image

w9apscun

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

arknldoa

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

相关问题