Focal Point
Graphics - Y Axis Values

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

January 02, 2007, 02:54 PM
Tom Flynn
Graphics - Y Axis Values
Has anyone modified, added or changed the GUI values within the Graph Assistant??

Currently, in 7.6, they are all in increments of 10, i.e., 10000, 10K, 10% 10M, 10B, etc.

We recently upgraded to 7.6 and I was hoping for some direction in adding 20M, 25M, 50K, etc.

I browsed the documentation, but, can't find anything. I have tried:

setScaleMin(getY1Axis(),1000000);
setScaleMax(getY1Axis(),10000000);

BUT, this is not reflected very well via the Dashboard...

Appreciate any assistance...Tom


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
January 02, 2007, 03:23 PM
susannah
setY1MajorGridStepAuto(false);
setY1MinorGridStepAuto(false);
setY1MajorGridStep(1.0); <-- might want to tinker with this step based on your min and max calcs
setY1ScaleMinAuto(false);
setY1ScaleMaxAuto(false);
setScaleMin(getY1Axis(), &MIN );
setScaleMax(getY1Axis(), &MAX );
Tom, here's a snippet of my code, i set the min and max for each graph;




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
January 03, 2007, 04:19 PM
Tom Flynn
Susannah,

THANK YOU for responding. Unfortunately, working better BUT....

Again, THANKS!! I'll keep on pluggin'...

Tom


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe