Focal Point
Vertical dual axis stacked bar graph

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

May 03, 2005, 03:03 PM
focusqueen
Vertical dual axis stacked bar graph
I'm sorry if this seems like a stupid question, but I'm trying to create a graph that should look like a vertical dual axis stacked bar graph. Can someone show me an example of a fex file that produces one of these graphs? I'd greatly appreciate it!
May 04, 2005, 11:43 AM
<DocServices>
Hi focusqueen,

Below is an example of a fex. You can also create this type of graph using the HTML Graph Assistant. Select Bar from the drop-down list on the Graph Types tab and then select Dual-Axis Stacked, and the Vertical option button.

I hope this helps.
Jennifer

-* Created by Graph Assistant
-* HTML Tool
-* Created by Graph Assistant
-* FF Line do not change this line! Field Name
-* FF Line do not change this line! Alias
-* FF Line do not change this line! Format
-* FF Line do not change this line! Segment
-* FF Line do not change this line! displayTree=0
GRAPH FILE CENTORD
SUM CENTORD.INVSEG.QTY_IN_STOCK
CENTORD.PINFO.QUANTITY
CENTORD.INVSEG.LINE_COGS
ACROSS CENTORD.OINFO.PLANT
ON GRAPH SET LOOKGRAPH VBRSTK2
ON GRAPH SET 3D OFF
ON GRAPH SET BARNUMB OFF
ON GRAPH SET GRID ON
ON GRAPH SET GRAPHEDIT SERVER
ON GRAPH SET VZERO ON
ON GRAPH SET GRAPHSTYLE *
setSeriesType(0,1);
setAxisAssignment(0,0);
setSeriesType(1,1);
setAxisAssignment(1,1);
setSeriesType(2,1);
setAxisAssignment(2,0);
setLegendDisplay(true);
setLegendMarkerPosition(0);
setMarkerDisplay(true);
setUseSeriesShapes(false);
setConnectLineMarkers(false);
setConnectScatterMarkers(false);
setO1LabelDisplay(true);
setO1AxisSide(0);
setO1MajorGridDisplay(true);
setO1MajorGridStyle(0);
setO1MinorGridDisplay(false);
setY1LabelDisplay(true);
setY1AxisSide(0);
setTextFormatPreset(getY1Label(),1);
setY1MajorGridDisplay(true);
setY1MajorGridStyle(0);
setY1MinorGridDisplay(false);
setY2LabelDisplay(true);
setY2AxisSide(1);
setTextFormatPreset(getY2Label(),1);
setY2MajorGridDisplay(true);
setY2MajorGridStyle(0);
setY2MinorGridDisplay(false);
setFontSize(getO1Label(),12);
setFontSizeAbsolute(getO1Label(),true);
setPlace(true);
ENDSTYLE
END
-* End Graph Assistant