|
|
|
|
|
<Chart>.ScatterSeriesLabel (Function) In french: <Graphe>.NuageEtiquetteSérie Initializes the label of data series in a "Scatter" chart. Reminder: By default, a chart has no label.
// Initializes the "Purchase" label of third data series in CHART_MyChart CHART_MyChart.ScatterSeriesLabel(3, "Purchase")
Syntax
<Chart control>.ScatterSeriesLabel(<Series number> , <Label>)
<Chart control>: Control name Name of the Chart control to use (in the window, page or report editor).
<Series number>: Integer Number of the series for which a label will be initialized. <Label>: Character string Caption of label to initialize. Remarks - The label font can be modified by <Chart>.LabelFont.
- The data defined by <Chart>.ScatterSeriesLabel will be taken into account during the next call to <Chart>.Draw.
- <Chart>.ScatterSeriesLabel and <Chart>.SeriesLabel are equivalent.
The syntax of <Chart>.SeriesLabel used with "Scatter" charts is as follows:
<Chart control>.SeriesLabel(2*<Index>-1, <Label>) Reminder: A "Scatter" chart uses the data in groups of two series (for more details, see <Chart>.ScatterAddDataXY).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|