EvaluatedElements: EaxChartEvaluatedElements;
The EvaluatedElements property determines type of calculated elements displayed on a chart.
By default, the chart displays only actual data of the range that is set in the Range property.
Executing the example requires that the repository contains an express report with the EXPRESS_REPORT identifier.
Add links to the Express, 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: