Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
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])
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])
Thank you so much!! I could make it!