PointsCount: Integer;
The PointsCount property determines the number of cells, in which data scale is divided into separate intervals.
The number of obtained intervals equals to PointsCount+1. These intervals contain the "Less ..." and "Greater ..." intervals. The "No data" interval is also added to the obtained intervals. It is possible to apply individual style for each interval by using color scale parameters.
Executing the example requires that the repository contains an express report with the Express_1 identifier.
Sub ChangePointsCount;
Var
MB: IMetabase;
Report: IEaxAnalyzer;
EaxMap: IEaxMap;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Exspress_1").Edit As IEaxAnalyzer;
EaxMap := Report.Map;
EaxMap.PointsCount := 10;
(Report As IMetabaseObject).Save;
End Sub ChangePointsCount;
On executing the example the number of points, in which data scale is divided, is set for express report map.
See also: