Focal Point
Customizing tooltip display

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8051022322

April 13, 2007, 04:44 AM
lakshmi
Customizing tooltip display
Is there a way to customize the tooltip display which the tool itself generates for DataBase Values??


Lakshmi
WF 713 WinXP/IIS/Apache Self Service
April 13, 2007, 04:54 AM
lakshmi
Basically I dont want the column name to be displayed..only the value of the column should get displayed...

Lakshmi


Lakshmi
WF 713 WinXP/IIS/Apache Self Service
April 13, 2007, 03:26 PM
mgrackin
Is this for a Graph or for a TABLE request?


Thanks!

Mickey

FOCUS/WebFOCUS 1990 - 2011
April 16, 2007, 06:29 AM
lakshmi
I need this to be implemented for Graph...


Lakshmi
WF 713 WinXP/IIS/Apache Self Service
April 23, 2007, 06:16 AM
lakshmi
Does anyone have any solution for this?


Lakshmi
WF 713 WinXP/IIS/Apache Self Service
April 23, 2007, 09:44 AM
Francis Mariani
ON GRAPH SET GRAPHSTYLE *
...
setToolTipDisplay(false);
...
ENDSTYLE



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
April 24, 2007, 12:50 AM
lakshmi
Whenever a tooltip is displayed it shows the column name along with the values by default...

What I need is only the values of the column but not the column name...

Is it possible?


Lakshmi
WF 713 WinXP/IIS/Apache Self Service
April 24, 2007, 09:48 AM
Francis Mariani
lakshmi, I'm sorry my suggestion does not, of course, answer your requirement. I think you'll have to browse around the Graphing API manual, but I'm not sure if you can alter what is displayed in a tooltip.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
April 24, 2007, 11:17 AM
Francis Mariani
OK, here's something that might work for you:

GRAPH FILE CAR
SUM SALES AS '&|nbsp;';
BY COUNTRY

HEADING CENTER
"World Sales"
" "

ON GRAPH SET STYLE *

TYPE=REPORT, FONT=ARIAL, SIZE=9, $
TYPE=HEADING, STYLE=BOLD, COLOR=GREEN, $
ENDSTYLE
ON GRAPH SET LOOKGRAPH PIE
ON GRAPH SET BARNUMB ON
ON GRAPH SET 3D ON
ON GRAPH SET VZERO ON
ON GRAPH SET GRID ON
END


SUM SALES AS '&|nbsp;';
puts an HTML non-breaking space (blank) instead of the column name and the tool-tip just displays the values and not the column names.

Though the legend for SALES will also be & nbsp; which means you may have to disable the legend and somehow change it with the Java Styling...

This message has been edited. Last edited by: Francis Mariani,


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
April 25, 2007, 01:08 AM
kalyanswarna
Hi Lakshmi
How are u doing this is kalyan


Thanks,
Kalyan.S
------------------------------------
WebFOCUS 7.1.4, Win XP SP2,
Oracle8i.
------------------------------------
April 25, 2007, 01:37 AM
lakshmi
Thanks Francis!!

Is it possible to do this for the field in the BY or ACROSS clause?


Lakshmi
WF 713 WinXP/IIS/Apache Self Service