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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
leon511920
Contributor III
Contributor III

graphs

I want to create a scatterplot with two dimensions and two measures, but the scatterplot can only specify one axis. Are there other graphs that would be more suitable?

1 Solution

Accepted Solutions
E_Røse
Creator II
Creator II

The scatterplot uses measures for both axes. Check out if you can use the only() - function to get what you want.

e.g. for dimension you can use [axis1]&'-'&[axis2], and hide the labels.Then for the x- and y -axis measures use only([axis1]) and only([axis2])

 

View solution in original post

2 Replies
E_Røse
Creator II
Creator II

The scatterplot uses measures for both axes. Check out if you can use the only() - function to get what you want.

e.g. for dimension you can use [axis1]&'-'&[axis2], and hide the labels.Then for the x- and y -axis measures use only([axis1]) and only([axis2])

 

leon511920
Contributor III
Contributor III
Author

Thank you so much!!   I could make it!