Focal Point
Graph Line with 2 Lines

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

October 12, 2004, 02:16 PM
<bouly_59>
Graph Line with 2 Lines
Hi,

I want do a graph of type line with data in "by" and data in "across" but 2 graphic are generated.

Have you got an idea ?

Thanks.

For Exemple my Fex :

GRAPH FILE TOTO
BY SHOP
ACROSS PERIOD
SUM SALES

ON GRAPH SET LOOKGRAPH LINE
END
October 13, 2004, 03:51 PM
<WFUser>
Try

ON GRAPH SET GRMERGE ON
October 14, 2004, 07:27 AM
<bouly_59>
I have already try ON GRAPH SET GRMERGE ON but the graph what is generated is not a line graph but a 3D Area graph...
October 14, 2004, 02:54 PM
pruittlr
Try putting this code within the graph style sheet.

ON GRAPH SET GRAPHSTYLE *
setSeriesType(0,1);
setSeriesType(1,1);
END

The 0 and 1 are the data fields.
The ",1" tells it to be a line.


Raelene