Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
DoctorPolidori
Contributor III
Contributor III

I need to show two dimensions on same Radar Chart, e.g. employee skills and employee interests

radar_chart_example.png

This image has been generated with PYTHON

 

 

 

Labels (1)
1 Solution

Accepted Solutions
justISO
Specialist
Specialist

Hi, for radar chart you need to have 2 dimensions and 1 measure. To have such view, you need to have data in this similar structure:

	load * inline [
    two_dimensions, values, points
    skills, python,5
    skills, sql,3
    skills, qlik,3
    skills, pipelines,5
    skills, statistics,3
    interests, python,2
    interests, sql,2
    interests, qlik,5
    interests, pipelines,5
    interests, statistics,5];

and from this just create a chart:

justISO_0-1694513818443.png

View solution in original post

1 Reply
justISO
Specialist
Specialist

Hi, for radar chart you need to have 2 dimensions and 1 measure. To have such view, you need to have data in this similar structure:

	load * inline [
    two_dimensions, values, points
    skills, python,5
    skills, sql,3
    skills, qlik,3
    skills, pipelines,5
    skills, statistics,3
    interests, python,2
    interests, sql,2
    interests, qlik,5
    interests, pipelines,5
    interests, statistics,5];

and from this just create a chart:

justISO_0-1694513818443.png