Focal Point
[SOLVED] Graph skip issue

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

April 16, 2012, 06:14 PM
Carlos Dias
[SOLVED] Graph skip issue
Trying to use the skip feature but without success.

This simple example doesn't work. I was expecting that the lable skip by 2. But without success.

  
SET LOOKGRAPH=VLINE
GRAPH FILE CAR
SUM DEALER_COST AS '' ACROSS CAR
ON GRAPH SET GRAPHSTYLE *
setTitleString("MY TITLE");
setTextJustHoriz(getTitle(),1);
setFontSizeAbsolute(getTitle(),true);
setFontSize(getTitle(),10);
setPlace(true);
setPlaceSkip(getO1Label(), 1);
setAutoSkip(getO1Label(),2);
setSkipBegin(getO1Label(),0);
setSkipCount(getO1Label(),2);
ENDSTYLE
END


Any tip on this one?

Thanks,
Carlos Dias

This message has been edited. Last edited by: Carlos Dias,


WebFOCUS version: 7.6
Linux/Windows
HTML, Excel
April 25, 2012, 10:00 AM
Kerry
Hi Carlos,

From our expert: please try the following API code -
AutoSkip(getO1Label(),2);
setSkipBegin(getO1Label(),1);
setPlaceSkip(getO1Label(),0);
setSkipCount(getO1Label(),1);


Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
April 26, 2012, 03:00 PM
Carlos Dias
Works fine.

Thanks,
Carlos Dias


WebFOCUS version: 7.6
Linux/Windows
HTML, Excel