Focal Point
[CLOSED] ToolTip Display

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8507052036

April 18, 2013, 04:32 AM
Balakrishnan Palanisamy
[CLOSED] ToolTip Display
Hi ,

Whenever a tooltip is displayed in bar it shows the column name along with the values by default...But I need is only the values of the column but not the column name...

Thanks in Advance...

Thanks,
Bala,
8867724500

This message has been edited. Last edited by: <Kathryn Henning>,


WebFOCUS 7x and 8x
Windows, All Outputs
April 18, 2013, 08:47 AM
Arunkumar
Bala the following example may help you.

If you could post some sample codes that may help us to get you the right thing you are looking for.

  
GRAPH FILE CAR
SUM CAR.BODY.DEALER_COST AS ''
CAR.BODY.RETAIL_COST AS ''
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
ON GRAPH PCHOLD FORMAT PNG
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET VZERO OFF
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBRSTK1
ON GRAPH SET 3D OFF
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 2
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setTransparentBorderColor(getChartBackground(),true);
setPlace(true);
setTransparentBorderColor(getSeries(0),false);
setTransparentBorderColor(getSeries(1),false);
setDepthRadius(0);
setDepthAngle(0);
setLabelStagger(getY1Label(),false);
setDisplay(getO1AxisLine(),true);
setBorderColor(getSeries(1),new Color(192,192,192));
setBorderColor(getSeries(0),new Color(192,192,192));
setBorderColor(getCurveFitLineRiser(0),new Color(255,0,0));
setFillColor(getCurveFitEquationText(0),new Color(64,0,64));
setFillColor(getCurveFitLineRiser(0),new Color(0,64,64));
setTextString(getAnnotation(0),"Retail Cost");
setDisplay(getAnnotation(0),true);
setShadowXOffset(getAnnotation(0),1);
setShadowYOffset(getAnnotation(0),1);
setShadowDisplay(getAnnotation(0),false);
setBorderType(getAnnotationBox(0),4);
setShadowColor(getAnnotationBox(0),new Color(192,192,192));
setShadowDisplay(getAnnotationBox(0),false);
setFillColor(getSeries(0),new Color(158,144,188));
setFontSizeAbsolute(getAnnotation(0), true);
setFontSizeInPoints(getAnnotation(0), 8);
setPlaceResize(getAnnotation(0), 0);
setTextString(getAnnotation(1),"Dealer Cost");
setDisplay(getAnnotation(1),true);
setFillColor(getAnnotation(1),new Color(32,0,32));
setFillColor(getAnnotation(0),new Color(32,0,32));
setDisplay(getAnnotationBox(0),true);
setFillColor(getAnnotationBox(0),new Color(157,144,255));
setRect(getAnnotation(0),new Rectangle(-5333.0,-15709.0,5333.0,1357.0));
setRect(getAnnotation(1),new Rectangle(0.0,-15709.0,5333.0,1357.0));
setFontSizeAbsolute(getAnnotation(1), true);
setFontSizeInPoints(getAnnotation(1), 8);
setPlaceResize(getAnnotation(1), 0);
setShadowXOffset(getAnnotation(1),1);
setShadowYOffset(getAnnotation(1),1);
setBorderType(getAnnotationBox(1),4);
setFillColor(getAnnotationBox(1),new Color(255,243,172));
ENDSTYLE
END
-RUN


Thank you,
Arun
April 18, 2013, 09:46 AM
Balakrishnan Palanisamy
Thanks Arun. Will try this and let you know.



Thanks,
Bala


WebFOCUS 7x and 8x
Windows, All Outputs