Focal Point
ON GRAPH PCHOLD

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

December 01, 2004, 05:58 AM
joan_c
ON GRAPH PCHOLD
Hi,
when creating a graph with
GRAPH FILE FITXER
.
.
ON GRAPH PCHOLD AS GRAFZ1 FORMAT HTMLTABLE
END

can be change its size doing click upon

I can avoid it?

Thanks!
December 02, 2004, 05:08 PM
<chris>
By default the graph applet (I believe) is on the client, so you can do some cool stuff like expand it if you can't quite see the details. However a lot of people like to shut this off. I'll give you the code, but be aware this can be done with the GRAPH tools found in DevStudio. In your fex, you should try adding this line:

ON GRAPH SET GRAPHEDIT SERVER

put it right before your hold command.

This makes the edit feature stay on the server and not passed down to the client.

Hope it helps!
December 03, 2004, 08:37 AM
joan_c
Hello Chris,thanks for your interest

In Devstudio i have not been able to find nothing about this, but selecting

Enable Zoom/pan in Properties/Settings

I have seen that method
setSelectionEnable(5);
is added in GRAPHSTYLE

looking for in
http://techsupport.informationbuilders.com/ibase/master...3graph/wf53graph.pdf

I have found this


Syntax:
setSelectionEnable(value);
value = getSelectionEnable();
where:
value
Can be one of the following:
0 for no selection.
1 selects a single element, only one object is highlighted.
2 selects only data related objects (bar, legend) and select all related objects when
clicking on one.
3 selects all related objects when one is clicked. 3 is the default value.
4 selects 50% data zooming on user-selected object.
5 selects drill-down/data zooming mode.


Syntax:
setSelectionEnableMove(boolean);
boolean = getSelectionEnableMove();
where:
boolean
Can be one of the following:
true allows user to select and move objects. This value is the default.
false allows user to select but not move objects.


it was what needed

thanks again for your attention