Show contents 

Home > Foresight Analytics Platform > Web Application and Desktop Application > Application Development and Functionality Enhancement > Developing in Development Environment > Description of System Assemblies > Express > Express Assembly Interfaces > IEaxChart > IEaxChart.EvaluatedElements

IEaxChart.EvaluatedElements

Syntax

EvaluatedElements: EaxChartEvaluatedElements;

Description

The EvaluatedElements property determines type of calculated elements displayed on a chart.

Comments

By default, the chart displays only actual data of the range that is set in the Range property.

Example

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

Add links to the Express and Metabase system assemblies.

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;
    EChart.EvaluatedElements := EaxChartEvaluatedElements.Totals;
    MObj.Save;
End Sub UserProc;

After executing the example, displaying of totals is enabled on the express report chart.

See also:

IEaxChart