As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
If you are using Developer Studio, then there are hundreds of visuals. Open Windows Explorer, and point to your Dev Studio version, and seacrch for ".gif" There are arrow down, up, etc that you can use plus many more.
And, besides using gifs for visualisation, you could in this case also make use of some windows fonts (wingdins or such) to display special characters in colors of your own choice.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
The easiest way (imho) to prevent that is to enclose your code (whether it's HTML, javascript, WebFOCUS etc.) between the UBB code tags which are [ code] and [/code] (without spaces) for the start and finish of your code.
You could also use the options for disabling HTML or Pure HTML but in my experience the code tags cover all
Also, don't create a new post, go back to the original and click on the "edit" icon - which looks like a folder icon with a pencil eraser on it.
TThis message has been edited. Last edited by: Tony A,
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Dan,you can show bars going right of zero for a + growth rate or gain, left of zero for a negative one or loss. just put this entry in your stylesheet section of your fex. GRAPHTYPE=DATA,COLUMN=myfield,GRAPHLENGTH=1,GRAPHCOLOR=NAVY,$ You can of course color your data, conditionally. TYPE=DATA,COLUMN=myfield,COLOR=GREEN,WHEN=myfield GE 0,$ TYPE=DATA,COLUMN=myfield,COLOR=RED,WHEN=myfield LT 0,$
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
TABLE FILE CAR
SUM
SALES
BY COUNTRY
BY CAR
BY MODEL
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLESHEET *
TYPE=REPORT, GRID=OFF,FONT='ARIAL', SIZE=8, $
GRAPHTYPE=DATA,COLUMN=SALES,GRAPHLENGTH=1,GRAPHCOLOR=NAVY,$
TYPE=DATA,COLUMN=SALES,COLOR=GREEN,WHEN=SALES GE 10000,$
TYPE=DATA,COLUMN=SALES,COLOR=RED,WHEN=SALES LT 10000,$
ENDSTYLE
END
I wonder if there's a way to get the "graph" to display one colour if the value is below a threshold and another colour if it is above...
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
Use the GUI and be careful of the order. The stylesheet entries are applied sequentially and if you don't have the conditions applied in the proper order, you will get funny looking results.
ah i figured it out. its not a bug, its a feature.
-*---------------------------------------
GRAPHTYPE=DATA,COLUMN=PROFIT,$
GRAPHTYPE=DATA,COLUMN=PROFIT,GRAPHCOLOR='GREEN',WHEN=PROFIT GE 0,$
GRAPHTYPE=DATA,COLUMN=PROFIT,GRAPHCOLOR='RED',WHEN=PROFIT LT 0,$
-*-------------------------------------
the WHEN= just wont stand alone in a GRAPHYTYPE (which makes sense) You have to declare the GRAPHTYPE first. then the WHEN= can tweak it all you want...
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003