|
|
|
|
|
grComparativeSeriesPosition (Function) In french: grComparatifPositionSérie Fixes the position (left or right) of a series in a comparative Histogram chart. grComparativeSeriesPosition(CHART_NoName1, 1, grAtRight) grComparativeSeriesPosition(CHART_NoName1, 2, grAtLeft) grSeriesColor(CHART_NoName1, 1, GetColor()) grSeriesColor(CHART_NoName1, 2, GetColor()) rRight is real rLeft is real nRadius is int = 250 FOR n = 1 TO 360 rRight = nRadius + nRadius * Cos(n) rLeft = nRadius + nRadius * Sin(n + 180) grAddData(CHART_NoName1, 1, n, rRight) grAddData(CHART_NoName1, 2, n, rLeft) grCategoryLabel(CHART_NoName, 1, n, n) END grDraw(CHART_NoName1)
Syntax
grComparativeSeriesPosition(<Chart name> , <Series number> , <Position>)
<Chart name>: Control name or character string Name of the chart to be used. This name corresponds to:- the name of the chart defined programmatically with grCreate.
- the name of the Chart control in the window editor.
<Series number>: Integer Number of the series to modify. <Position>: Integer Position of the series handled in the chart: | | grAtLeft | Series displayed on the left of the chart. | grAtRight | Series displayed on the right of the chart. |
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|