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.
I need to apply negative color (RED for Negative values) for YAXIS Labels in line Graph (Without Using Bucket Chart as PDF Compound Report does not support Bucket Charts).Is there any way to achieve it?
Sample Code:
DEFINE FILE GGSALES MON/M=DATE; MONTH/A15= IF MON EQ '01' THEN 'January' ELSE IF MON EQ '02' THEN 'February' ELSE IF MON EQ '03' THEN 'March' ELSE IF MON EQ '04' THEN 'April' ELSE IF MON EQ '05' THEN 'May' ELSE IF MON EQ '06' THEN 'June' ELSE IF MON EQ '07' THEN 'July' ELSE IF MON EQ '08' THEN 'August' ELSE IF MON EQ '09' THEN 'September' ELSE IF MON EQ '10' THEN 'October' ELSE IF MON EQ '11' THEN 'November' ELSE 'December'; END
-DEFAULTH &WF_STYLE_UNITS='PIXELS'; -DEFAULTH &WF_STYLE_HEIGHT='405.0'; -DEFAULTH &WF_STYLE_WIDTH='770.0'; -DEFAULTH &WF_TITLE='WebFOCUS Report'; GRAPH FILE GGSALES SUM BUDDOLLARS/D7B NOPRINT DOLLARS/D7B NOPRINT COMPUTE DIFFERENCE_DOLLARS/D7B =(DOLLARS-BUDDOLLARS)/1000; AS '' COMPUTE DIFFERENCE_DOLLARS/D7B =(BUDDOLLARS-DOLLARS)/1000; AS '' BY REGION ACROSS MONTH COLUMNS 'Jan' AND 'Feb' AND 'Mar' AND 'Apr' AND 'May' AND 'Jun' AND 'Jul' AND 'Aug' AND 'Sep' AND 'Oct' AND 'Nov' AND 'Dec' ON GRAPH SET LOOKGRAPH VLINE ON GRAPH SET GRID ON ON GRAPH SET GRMERGE ADVANCED ON GRAPH SET GRMULTIGRAPH 0 ON GRAPH SET GRLEGEND 1 ON GRAPH SET GRXAXIS 1 ON GRAPH PCHOLD FORMAT JSCHART ON GRAPH SET STYLE * *GRAPH_JS blaProperties: { seriesLayout: 'stacked', dash: '0', },