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     GRAPH file ?; killing those line marker boxes

Read-Only Read-Only Topic
Go
Search
Notify
Tools
GRAPH file ?; killing those line marker boxes
 Login/Join
 
Expert
posted
i thought
setMarkerDisplay(false);
would do it, but no cigar.
how do get smooth lines without those boxes on every data point?
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Expert
posted Hide Post
Susannah,

That should work OK, but you could try setMarkerSize(0,0); as well which should make them so small as to appear hidden.

For smooth lines you need to use - setSmoothLines(true);

You seem to be working all hours? Rush job or night shift?

T
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Expert
posted Hide Post
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 Wink )
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Expert
posted Hide Post
Hi Susannah,

You're welcome, only, can I go now as I need to get home Wink

Hope the "seriously wicked" changes are going well.

BTW, the smooth lines works in 5.3.2. Not sure when it became available though.

T
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Expert
posted Hide Post
I thought I'd add my two bits.

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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Expert
posted Hide Post
quote:
setSmoothLines(true);

causes the tooltip to display the first amount, no matter where in the line you hover.


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
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     GRAPH file ?; killing those line marker boxes

Copyright © 1996-2020 Information Builders