Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

158
Views
How do I change the style of the inner part enclosed by the lines(polar) chart created with highcharts?

Space within the yellow lines I would also like to fill it up with yellow color: chart image

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Just use area series type instead of line:

  chart: {
    polar: true
  },
  series: [{
    type: 'area',
    data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
  }]

Live demo: http://jsfiddle.net/BlackLabel/67oxc5pt/

Docs: https://www.highcharts.com/docs/chart-concepts/series

about 4 years ago · Juan Pablo Isaza Report

0

Radar charts in Python with Plotly

For a filled line in a Radar Chart, update the figure created with px.line_polar with fig.update_traces

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

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!