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.
thanks Tony....SmoothLines Aha! hang on..didn't work; got an error on SmoothLines. i'm in 527. markersize worked. i'll use that. don't go far away...i'm gonna ask you for more graph help... (re all hours? working on a production box... so gotta do serious wicked things when the users are not around. way too impatient to work on the dev box and then xfer )
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
setMarkerDisplay(false) seems to be turning the markers off, but the command causes a problem - the last x-axis dimension loses the tool-tip display - you cannot determine the measure amount for the last dimension.
Try the fex below:
-* File fm_graphtest1.fex
TABLE FILE GGORDER
SUM
QUANTITY/D5 AS ''
ACROSS ORDER_DATE AS ''
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF, SIZE=7, $
ENDSTYLE
ON TABLE SET PAGE NOPAGE
END
GRAPH FILE GGORDER
SUM
QUANTITY AS ''
BY ORDER_DATE
ON GRAPH SET HAXIS 1060
ON GRAPH SET VAXIS 224
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VLINE
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setMarkerDisplay(true); // enable or disable the display of markers
setDepthRadius(0); // Turn off 2D
ENDSTYLE
END
GRAPH FILE GGORDER
SUM
QUANTITY AS ''
BY ORDER_DATE
ON GRAPH SET HAXIS 1060
ON GRAPH SET VAXIS 224
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VLINE
ON GRAPH SET GRMERGE ON
ON GRAPH SET GRAPHSTYLE *
setMarkerDisplay(false); // enable or disable the display of markers
setDepthRadius(0); // Turn off 2D
ENDSTYLE
END
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