Enum Collect
Specifies which data points to collect into one point.
Namespace: FastReport.MSChart
Assembly: FastReport.dll
Syntax
public enum Collect
Fields
| Name | Description |
|---|---|
| BottomN | Show bottom N points (N value is specified in the CollectValue property), collect other points into one. |
| GreaterThan | Collect points which have Y value greater than specified in the CollectValue property. |
| GreaterThanPercent | Collect points which have Y value greater than percent specified in the CollectValue property. |
| LessThan | Collect points which have Y value less than specified in the CollectValue property. |
| LessThanPercent | Collect points which have Y value less than percent specified in the CollectValue property. |
| None | Do not collect points. |
| TopN | Show top N points (N value is specified in the CollectValue property), collect other points into one. |