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     [CASE-OPENED] Actual Value Line in HBOXPLOT

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CASE-OPENED] Actual Value Line in HBOXPLOT
 Login/Join
 
Expert
posted
What am I missing, in the GUI, to increase the length and width of the "Actual Value Line" in HBOXPLOT? That is, the black vertical line shown about 1/3 of the way into the green section. I need this to be more visible than it is. This will also be used for a drilldown to a detail report. Consider the following code and modify it as desired to make that happen Smiler
* Using 8202M Gen60 *


Thanks In Advance, Doug
-SET &TARGET = 75 ;
-SET &ACTUAL = 100 ;
-SET &MAX    = &TARGET * 2 ;
ENGINE INT CACHE SET ON
SET PAGE-NUM=NOLEAD
SET ARGRAPHENGINE=JSCHART
SET EMBEDHEADING=ON
SET GRAPHDEFAULT=OFF
-DEFAULTH &WF_STYLE_UNITS='PIXELS';
-DEFAULTH &WF_STYLE_HEIGHT='405.0';
-DEFAULTH &WF_STYLE_WIDTH='770.0';
-DEFAULTH &WF_TITLE='WebFOCUS Report';
ENGINE INT CACHE SET ON
SET PAGE-NUM=NOLEAD
SET ARGRAPHENGINE=JSCHART
SET EMBEDHEADING=ON
SET GRAPHDEFAULT=OFF
-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 COMPUTE ACTUAL/I9C=DOLLARS/10 ; AS ''
WHERE GGSALES.SALES01.DOLLARS EQ 1000;
FOOTING
"TARGET > &TARGET ACTUAL:&ACTUAL MAX:&MAX"
ON GRAPH PCHOLD FORMAT JSCHART
-*ON GRAPH HOLD FORMAT JSCHART AS THISCHART
ON GRAPH SET VZERO ON
ON GRAPH SET GRAPHEDIT SERVER
ON GRAPH SET BARNUMB OFF
ON GRAPH SET 3D OFF
ON GRAPH SET GRID ON
ON GRAPH SET AUTOFIT ON
ON GRAPH SET UNITS &WF_STYLE_UNITS
ON GRAPH SET HAXIS &WF_STYLE_WIDTH
ON GRAPH SET VAXIS &WF_STYLE_HEIGHT
ON GRAPH SET EMBEDHEADING ON
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 0
ON GRAPH SET LOOKGRAPH HBOXPLOT
ON GRAPH SET AUTOFIT ON
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setPieDepth(0);
setPieTilt(0);
setDepthRadius(0);
setPlace(true);
setCurveFitEquationDisplay(false);
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/ibi_themes/Warm.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, $
TYPE=FOOTING, JUSTIFY=CENTER, FONT='ARIAL', SIZE=8, COLOR=RGB(32 0 32), STYLE=BOLD, $
*GRAPH_SCRIPT
setReportParsingErrors(false);
setSelectionEnableMove(false);
setScaleMaxAuto(false);
setGaugeStartAngle(180.0);
setGaugeStopAngle(0.0);
setScaleMax(getY1Axis(),&MAX.EVAL);
setDisplay(getGaugeBand1(),true);
setGaugeBandMin(getGaugeBand1(),0);
setGaugeBandMax(getGaugeBand1(),&TARGET.EVAL);
setFillColor(getGaugeBand1(),new Color(255,128,128));
setDisplay(getGaugeBand1(),true);
setGaugeBandMin(getGaugeBand2(),&TARGET.EVAL);
setGaugeBandMax(getGaugeBand2(),&MAX.EVAL);
-*setGaugeBandMax(getGaugeBand2(),63);
setFillColor(getGaugeBand2(),new Color(128,255,128));
setDisplay(getGaugeBand3(),false);
setGaugeBandMin(getGaugeBand3(),0.0);
setGaugeBandMax(getGaugeBand3(),0.0);
setDisplay(getGaugeBand4(),false);
setGaugeBandMin(getGaugeBand4(),0.0);
setGaugeBandMax(getGaugeBand4(),0.0);
setDisplay(getGaugeBand5(),false);
setGaugeBandMin(getGaugeBand5(),0.0);
setGaugeBandMax(getGaugeBand5(),0.0);
setFontSizeAbsolute(getGaugeLabel(),false);
setGaugeTitlePosition(3);
setSeriesLabel(0," ");
setPlace(false);
setPiesPerRow(1);
setGaugeShowZeroLabel(false);
setGaugeMajorAutoStep(false);
setGridStep(getY1MajorGrid(),&TARGET.EVAL);
setGaugeMajorTickRelativeTickLength(0.0);
setGaugeMinorAutoStep(false);
setGridStep(getY1MinorGrid(),&TARGET.EVAL);
setGaugeMinorTickRelativeTickLength(0.0);
setGaugeRelativeInnerRadius(0.5);
setDisplay(getY1Label(),false);
setFillColor(getSeries(0),new Color(31,119,180));
setTransparentBorderColor(getSeries(0), true);
setDisplay(getO1Label(),false);
setDisplay(getO1Title(),false);
setDisplay(getO1AxisLine(),false);
setGridStepAuto(getY1MajorGrid(),false);
setScaleMustIncludeZero(getY1Axis(),false);
setDisplay(getY1Title(),false);
setDisplay(getY1AxisLine(),false);
setDisplay(getY1ZeroLine(),false);
setFillColor(getSeries(*),new Color(255,0,0));
setTransparentBorderColor(getSeries(*), true);
setScaleMinAuto(getY1Axis(),true);
setScaleMaxAuto(getY1Axis(),true);
*GRAPH_JS_FINAL
"xaxis": {
    "title": {
        "visible": false
    }
},
"pieProperties": {
    "holeSize": "0%"
},
"blaProperties": {
    "orientation": "horizontal"
},
"yaxis": {
    "title": {
        "visible": false
    }
},
"agnosticSettings": {
    "chartTypeFullName": "Special_Boxplot_Horizontal"
}
*END
ENDSTYLE
END
-RUN

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




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
I added
"boxPlotProperties": {
   hatWidth: '100%', 
   drawHatAsBox: false,
   medianLine: {
      width: 1,
      color: 'black',
      dash: ''
   },
   "connectorLine": {
   hatWidth: '800%', 
      width: 10,
      color: 'black',
      dash: ''
   }
  
after the "agnosticSettings" and am almost there. I'd like to to exceed the height of the box, of at least be the same height.

This message has been edited. Last edited by: Doug,
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Still looking for the answer to extending the height of the "Actual Value Line" and adding a hyperlink to it Music

This message has been edited. Last edited by: Doug,
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Guru
posted Hide Post
Tried this in 8202 and same issue


WebFOCUS Administrator @ Worldpay FIS
PROD/DEV/TEST: 8204, SANDBOX: 8206 soon - BIP, Reportcaster, Resource Manager, EUM, HyperStage soon, DB: HIVE,Oracle,MSSQL
 
Posts: 291 | Location: Greater Cincinnati  | Registered: May 11, 2005Report This Post
Virtuoso
posted Hide Post
Doug

Sounds like you need to open a case with techsupport.


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
 
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005Report This Post
Expert
posted Hide Post
Thanks Chuck, I'll do that with a reference to this post and a note in the original post subject line.
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 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     [CASE-OPENED] Actual Value Line in HBOXPLOT

Copyright © 1996-2020 Information Builders