New TIBCO Community Launches Soon!
The community will temporarily be 'read-only' beginning July 8th until the launch.
How can we show a Peak value or specific valuein in a visulaization with a tag on visualaization?
Hi Everyone,
For example i have line chart in that i need to show a label at a particular point showing the tooltip values or some of the charecteristics of a particular node.
Can anyone help me out with this.Thank you
(2) Answers
The labels for Line Charts will only show the data values in the labels and will not allow you to write custom labels easily.
I would suggest you instead use a Scatter Plot and then define the line connection in Properties > Line Connection. Then you can create 'custom' labels like this:
- Properties > Labels > Label by: Right click and select "Custom expression" > Use expression like: "This is my custom text to display"
- Properties > Labels > Show lables for: "Marked Rows"
- Then mark the point you want to show the label for
You can create a bookmark if you want to 'remember' this configuration and reapply it later too.
2 Comments
"This is a custom text expression used for my label! " & DocumentProperty("Axis.X.DisplayName")
"The data to analyze"${Axis.X.DisplayName}. Please let me know
Thanks

2 Comments
"This is a custom text expression used for my label! " & DocumentProperty("Axis.X.DisplayName")
"The data to analyze"${Axis.X.DisplayName}. Please let me know
Thanks
You could try to make a calculated column that would add a comment or other value to a cell based on a condition. Then you could label by the new column. Labels would only show where there was a value in the new column.
2 Comments
if([columname]>100 , "high" ,"") Get rid of the space on the second quote.
if([columname]>100 , "high") Eliminate the second part all together.
See if that helps.
i have created a calculated column with some condition like
if([columname]>100 , "high" ," ")
and then used same column to plot labels in scatter plot visualization it is showing null labels also. Is there any way we can eliminate null values and only to show the points with high value .
Thanks in Advance

2 Comments
if([columname]>100 , "high" ,"") Get rid of the space on the second quote.
if([columname]>100 , "high") Eliminate the second part all together.
See if that helps.
i have created a calculated column with some condition like
if([columname]>100 , "high" ," ")
and then used same column to plot labels in scatter plot visualization it is showing null labels also. Is there any way we can eliminate null values and only to show the points with high value .
Thanks in Advance
Similar Questions
Haven't found what you are looking for?
Existing Best Answer
This Question already has a 'Best Answer'. If you believe this answer is better, you must first uncheck the current Best Answer