Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
JohnIssue
Contributor III
Contributor III

Delete Data Points in Radar Chart

Hi everyone!

 

I am developing a radar chart in qlik. I would like to delete the data point labels and also the grid lines. I am trying to use the '/options/developer' and modify some code in 'Properties', but I do not know if it is even possible?

 

Please, could you help me?

 

Thanks in advance!

Labels (3)
1 Solution

Accepted Solutions
rodrigo_martins
Partner - Contributor III
Partner - Contributor III

Hello,
I don't see how to do this through the object's properties. However, you can make some CSS adjustments to get closer to what you want. To inject CSS into Qlik you can use Multi-KPI

This style should work:

.gridCircle { fill: rgb(205 205 205 / 0%)!important; stroke: rgb(205 205 205 / 0%)!important; }
.axisLabel { display: none; }

 

View solution in original post

2 Replies
rodrigo_martins
Partner - Contributor III
Partner - Contributor III

Hello,
I don't see how to do this through the object's properties. However, you can make some CSS adjustments to get closer to what you want. To inject CSS into Qlik you can use Multi-KPI

This style should work:

.gridCircle { fill: rgb(205 205 205 / 0%)!important; stroke: rgb(205 205 205 / 0%)!important; }
.axisLabel { display: none; }

 

JohnIssue
Contributor III
Contributor III
Author

It seems like it works!! Thank you very much!