Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     (SOLVED) Link ON stacked GRAPH BAR

Read-Only Read-Only Topic
Go
Search
Notify
Tools
(SOLVED) Link ON stacked GRAPH BAR
 Login/Join
 
Silver Member
posted
I am looking to get a link to be just on BMW column.

The code is below.

GRAPH FILE CAR
SUM
SEATS
BY MODEL
ACROSS CAR
ON GRAPH SET LOOKGRAPH VBRSTK1
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setPlace(true);
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=DATA, TARGET='_blank', FOCEXEC=TEST.fex,$
END


Any help is apreciated.

Thanks,
DREDDY.

This message has been edited. Last edited by: dreddy_23,


Prod: WebFOCUS 8.1.05 on Win 10
Test: WebFOCUS 8.1.05 on Win 10
 
Posts: 43 | Registered: January 18, 2007Report This Post
Expert
posted Hide Post
I'm not near a computer right now so I can't verify, but try the WHEN clause:

TYPE=DATA, WHEN=CAR EQ 'BMW',  TARGET='_blank', FOCEXEC=TEST.fex,$


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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Silver Member
posted Hide Post
I have tried this. It is dislaying the the GRAPH with no error but link doesn't show up.

This message has been edited. Last edited by: dreddy_23,


Prod: WebFOCUS 8.1.05 on Win 10
Test: WebFOCUS 8.1.05 on Win 10
 
Posts: 43 | Registered: January 18, 2007Report This Post
Virtuoso
posted Hide Post
If it's always the same column, then this works. If the column number will be dynamic, then you have to get more creative.

GRAPH FILE CAR
 SUM SEATS
 BY MODEL
 ACROSS CAR
 ON GRAPH SET LOOKGRAPH VBRSTK1
 ON GRAPH SET GRMERGE ON
 ON GRAPH SET GRAPHSTYLE *
  setPlace(true); 
 ENDSTYLE
 ON GRAPH SET STYLE *
  TYPE=DATA, COLUMN=SEATS(3), TARGET='_blank', FOCEXEC=TEST.fex,$
 ENDSTYLE
END


WebFOCUS 7.7.05
 
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007Report This Post
Virtuoso
posted Hide Post
Carrying on from Dan's suggestion, here is a more general solution:
  
-* File dreddy01.fex
-SET &CAR=BMW;
TABLE FILE CAR
SUM
CAR NOPRINT
COMPUTE LL/I3=LL+1;
BY CAR NOPRINT
WHERE TOTAL CAR EQ '&CAR';
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE SAVE
END
-RUN
-READ SAVE,&POS
-RUN
GRAPH FILE CAR
SUM 
SEATS
BY MODEL
ACROSS CAR
ON GRAPH SET LOOKGRAPH VBRSTK1
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setPlace(true); 
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=DATA, COLUMN=SEATS(&POS), TARGET='_blank', FOCEXEC=TEST.fex,$
END


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

 
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006Report This Post
Silver Member
posted Hide Post
Thanks Dan and Danny.
Both the solutions worked fine.

Dreddy.


Prod: WebFOCUS 8.1.05 on Win 10
Test: WebFOCUS 8.1.05 on Win 10
 
Posts: 43 | Registered: January 18, 2007Report This Post
Virtuoso
posted Hide Post
Another approach:

DEFINE FILE CAR
 DRILL_FLAG/I1 = IF (CAR EQ 'BMW') THEN 1 ELSE 0 ;
END
-*
GRAPH FILE CAR
 SUM DRILL_FLAG NOPRINT
 BY MODEL
-*
 SUM SEATS
 BY MODEL
 ACROSS CAR
 ON GRAPH SET LOOKGRAPH VBRSTK1
 ON GRAPH SET GRMERGE ON
 ON GRAPH SET GRAPHSTYLE *
  setPlace(true);
 ENDSTYLE
 ON GRAPH SET STYLE *
  TYPE=DATA, COLUMN=SEATS(*), WHEN=DRILL_FLAG NE 0, TARGET='_blank', FOCEXEC=TEST.fex,$
 ENDSTYLE
END


WebFOCUS 7.7.05
 
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     (SOLVED) Link ON stacked GRAPH BAR

Copyright © 1996-2020 Information Builders