Gets or sets a list with the summary operations performed at chart data.
Namespace: MindFusion.Reporting
Assembly: MindFusion.Reporting
C# Copy Code |
---|
public IList SummaryValues { get; set; } |
Visual Basic Copy Code |
---|
Public Property SummaryValues As IList |
An object of type System.Collection.IList that holds the summaries.
SummaryValues enables you to add aggregate operations like min, max, average and so on to the chart values. Use the members of the Summary enumeration. You can specify your own summary values with the AddCustomSummary method.
Summary graphics follow the shape of the chart they refer to. In line charts, they are lines, in bar charts - bars, and so on. They are drawn with SummaryPens and SummaryBrushes. The labels for sumary charts are the same type as those of the chart's axes.
Summary operations are performed on XData for horizontal line charts and on YData for vertical ones. In bar charts always Data is used.
Default value for the SummaryValues property is an empty list.