Show contents 

Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.Chart

IEaxAnalyzeCore.Chart

Syntax

Chart: IEaxChart;

Description

The Chart property returns the object that contains express report chart.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    Chart: IEaxChart;
Begin
    MB:=MetabaseClass.Active;
    Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    Chart:=Expr.Chart;
End Sub UserProc;

After executing the example the Chart variable contains express report chart. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzeCore