Focal Point
style of the table

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

June 08, 2005, 03:24 AM
<Happy_sing>
style of the table
Dear all:
when we use "ACROSS filename" to deal with the data, the table will show a line between the title and data, is it possible to discard this line in the table ? Confused

Thanks in advance !!
June 08, 2005, 05:07 PM
GCohen
In Report Painter select the Across field, and
use the Report pull down option of STYLE.
In STYLE choose BORDERS and put a dotted line with
no width across the top. This removes the Across line.
June 08, 2005, 08:52 PM
susannah
whats the CODE to remove that line?
June 08, 2005, 09:49 PM
reFOCUSing
Code or more detailed instructions would be great. I tried you instructions and they did nothing.
June 22, 2005, 12:24 PM
<Stahl>
Hi,
we have the same problem: How to remove this line under across heading.
Who does know the appropriate code??
Thanks
June 22, 2005, 08:44 PM
Mickey
I have noticed that the underline does not appear when we make use of the grid in reports having across.

If the report does not need to use any grid, you can try this

TABLE FILE CAR
SUM SEATS
ACROSS CAR
-*ON TABLE SET ONLINE-FMT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, BORDER=LIGHT, BORDER-COLOR=WHITE,$
ENDSTYLE
END

M
July 07, 2005, 03:10 PM
Kerry
Hi everyone, is this what you are looking for?

Why the extra line after each record in PDF with WRAP?
http://techsupport.informationbuilders.com/sps/82091120.html
How to remove the extra line between the HEADING and TITLEs
http://techsupport.informationbuilders.com/sps/81761073.html
How to remove column title underlines in HTML and PDF output
http://techsupport.informationbuilders.com/sps/81331081.html
How to remove the underline from a column title in PDF?
http://techsupport.informationbuilders.com/sps/90371054.html

You will need to log on with tech support userid/password to access these documents. Hope these help. Big Grin

Cheers,

Kerry
July 20, 2005, 06:53 AM
<Stahl>
Hi Kerry,
that's not quite the right thing I need.
That's the code:
TABLE FILE CAR
SUM DC
BY CAR AS ''
ACROSS COUNTRY AS ''
END

What I want to do, is to remove the line underneath the ACROSS-values.
July 20, 2005, 09:43 AM
Tony A
Stahl,

Mickey has given you a possible solution as above. Unfortunately, Gerry's solution via report painter (which is close to Mickey's solution i.e. adding a border) only serves to remove the GRID=OFF styling and therefore defeats the objective.

If you can't get Mickey's advice to work for you, then add your styling to your post so that I can see what you see, and then I'll try and assist if I can.

Regards

Tony
July 20, 2005, 12:50 PM
Leah
SET ACROSSLINE = OFF

The above eliminates the line everywhere it might appear.
July 20, 2005, 01:06 PM
Tony A
Not in 5.3.2 it doesn't -

SET ACROSSLINE = OFF
TABLE FILE CAR
SUM DC
BY CAR AS ''
ACROSS COUNTRY AS ''
ON TABLE SET PAGE-NUM OFF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF,$
ENDSTYLE
END
July 20, 2005, 01:37 PM
Leah
My Mistake, forgot the style mode command in what we're doing, don't use it much just for paper printing. Anyway we are at 5.3.4 testing, thanks, as if this is now not working I need to look at my output.

SET ACROSSLINE = OFF
SET STYLEMODE = FIXED
TABLE FILE CAR
SUM DC
BY CAR AS ''
ACROSS COUNTRY AS ''
ON TABLE SET PAGE-NUM OFF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF,$
ENDSTYLE
END
July 20, 2005, 02:19 PM
mgrackin
IMHO this should work WITHOUT the SET STYLEMODE = FIXED. New Feature Request!! Or is this a Feature Enhancement Request?
July 20, 2005, 02:44 PM
susannah
STYLEMODE=FIXED
takes away all the html cell language. the output isn't a table at all, its just a bunch of span tags, so the grid off or on, etc, has no impact at all.
I just did a search on ACROSSLINE and came up with only an MVS manual. What version is "acrossline" working in? Sure would be great if it worked in 5n.
Mickey, your suggestion is great. thanks , i can implement that one right away on my site.