Focal Point
How to generate dynamic graph any example

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

March 23, 2005, 12:39 PM
<We_Focus>
How to generate dynamic graph any example
How to generate dynamic graph any example

please help with good example
March 23, 2005, 02:34 PM
Boogarweed
I'm not sure what you mean by "dynamic graph". Here's a simple graph though:

SET LOOKGRAPH=HBAR
SET GRAPHEDIT=OFF
SET GRID=ON
SET BARNUM=OFF
SET 3D=ON
GRAPH FILE CAR
PRINT MPG
ACROSS MODEL
ON GRAPH PCHOLD FORMAT GIF
END
March 24, 2005, 04:31 AM
<We_Focus>
Hi Boogarweed

Dynamic means it should take field name as variable and generate a graph

or you can say diemension and measures should be taken as variable from a dropdown list and generate a graph
March 24, 2005, 08:40 AM
HÃ¥kan
Well,

I suppose that would be something like this:

GRAPH FILE CAR
SUM &MEASURE.EVAL
ACROSS &DIM.EVAL
END

where the &MEASURE and &DIM are populated from a parameter page.