cancel
Showing results for 
Search instead for 
Did you mean: 

How to make a Line inside a Polar chart

thuy_resolve
8 - Cloud Apps
8 - Cloud Apps

Hi guys! May I ask if you guys know how to create a Line inside the Polar chart like this? 

2024-07-23 11 29 40.png

Thank you in advance for your help!

1 ACCEPTED SOLUTION

rapidbisupport
11 - Data Pipeline
11 - Data Pipeline

Hi @thuy_resolve ,

You could try the following widget script to change the second item on the values shelf to a line.

widget.on('processresult', (w, args) => {
  args.result.series[1].type = 'line'
})

Let me know how you go?

Thanks,

Daniel

RAPID BI

[email protected]

RAPID BI - Sisense Professional Services | Implementations | Custom Add-ons

 

View solution in original post

2 REPLIES 2

rapidbisupport
11 - Data Pipeline
11 - Data Pipeline

Hi @thuy_resolve ,

You could try the following widget script to change the second item on the values shelf to a line.

widget.on('processresult', (w, args) => {
  args.result.series[1].type = 'line'
})

Let me know how you go?

Thanks,

Daniel

RAPID BI

[email protected]

RAPID BI - Sisense Professional Services | Implementations | Custom Add-ons

 

Thank you Daniel for your swift response! Yes, using the script you provided helps me change it into the line now. Great help!