Focal Point
[CLOSED] Conditional styling markers in graph

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

January 21, 2013, 08:03 AM
Carlos Dias
[CLOSED] Conditional styling markers in graph
Hi,
It's possible to define conditional styling rules with markers?

Instead of setting the color in the condition I want to set the marker shape.
Another option could be to use the DataText option. But I can't find a way to define a condition for this case.

Thanks in advanced,
Carlos Dias

This message has been edited. Last edited by: Kerry,


WebFOCUS version: 7.6
Linux/Windows
HTML, Excel
January 21, 2013, 03:51 PM
Waz
I don't think that is possible.

You may have to ask Techsupport.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

January 22, 2013, 05:37 PM
Dan Satchell
Not sure if this might be helpful, but graph markers for a series can be set with the setMarkerShape graph API statement. You would need to set marker shape values in Dialogue Manager variables in advance. For example:

-SET &MARKER_SHAPE1 = 1 ;
-SET &MARKER_SHAPE2 = 2 ;
-SET &MARKER_SHAPE3 = 3 ;
-*
GRAPH FILE xxx
 SUM ....
 BY ...
 ON GRAPH SET GRAPHSTYLE *
  setSquareMarkers(false);
  setMarkerShape(getSeries(0),&MARKER_SHAPE1);
  setMarkerShape(getSeries(1),&MARKER_SHAPE2);
  setMarkerShape(getSeries(2),&MARKER_SHAPE3);
 END GRAPHSTYLE
END



WebFOCUS 7.7.05