FunnelLabelValueLocation

In a Funnel graph, this property defines the location where values labels are drawn.

Syntax:

setFunnelLabelValueLocation(value);
value = getFunnelLabelValueLocation();

where:

value

Can be one of the following:

LOCATION_LABELS_ONTOP_OF_VALUES_BOTH_ON_RIGHT = 0;LOCATION_LABELS_ONLEFT_VALUES_ON_RIGHT = 1;LOCATION_VALUES_ONLEFT_LABELS_ON_RIGHT = 2;

0 for labels on top of values drawn on the right of the funnel. 0 is the default value.

1 for labels on the left of the funnel or Values on the right of the funnel.

2 for values on the left or the funnel or Labels on the right of the funnel.

Example:

setTitleString("Funnel Chart");
setData(0,0,10);
setData(1,0,20);
setData(2,0,30);
setSeriesLabel(0, "Series 0");
setSeriesLabel(1, "Series 1");
setSeriesLabel(2, "Series 2");
setDisplayFunnelGroup(0);
setDataRangeToExtent();
setGraphType(106);
setTransparentBorderColor(getFrame(), true); 
setFunnelLabelValueLocation(0);
setSubtitleString("setFunnelLabelValueLocation(0)");

funnel graph

setFunnelLabelValueLocation(1);
setSubtitleString("setFunnelLabelValueLocation(1)");

funnel graph

setFunnelLabelValueLocation(2);
setSubtitleString("setFunnelLabelValueLocation(2)");

funnel graph

See DisplayFunnelGroup, PieDepth, PieRotate, PieTilt.


WebFOCUS