Yahya Alramadan Posted July 18 Share Posted July 18 I have a scatter plot with dual axis and three columns in the Y-axis. I would like to always display labels of the last Y value of each curve. The labels should be dynamic to honor the user's filters. Appreicate your support. Link to comment Share on other sites More sharing options...
David Boot-Olazabal Posted July 19 Share Posted July 19 Hi Yahya, Could you share some screenshots of what you are trying to achieve (or an example .dxp file)? That way we have a better visual understanding of what your challenge is. Kind regards, David Link to comment Share on other sites More sharing options...
Gaia Paolini Posted July 19 Share Posted July 19 for your label, use a custom expression like this: case when [myx]=Max([myx]) then [myy] end where "myx" is the name of your x axis column and "myy" is the name of your y axis column. Set the label to always display. It will only display a label for the y value corresponding to the maximum x value (all other values of the label are set to null). Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now