Show contents 

Express > Express Assembly Interfaces > IEaxChart > IEaxChart.SeriesInRows

IEaxChart.SeriesInRows

Syntax

SeriesInRows: Boolean;

Description

The SeriesInRows property determines how the data series are obtained.

Comments

If this property is set to True, data series are obtained by rows. If this property is set to False, data series are obtained by columns.

Example

Executing the example requires that the repository contains an express report with the EXPRESS_REPORT identifier.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Expr: IEaxAnalyzer;
    EChart: IEaxChart;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById(
"EXPRESS_REPORT").Edit;
    Expr := MObj 
As IEaxAnalyzer;
    EChart := Expr.Chart 
As IEaxChart;
    EChart.SeriesInRows := 
False;
    MObj.Save;
End Sub UserProc;

After executing the example, data series are extracted by columns when creating an express report chart.

See also:

IEaxChart