[]
Represents optional settings for pivot filters, containing special settings for value filters, date filters, and top 10 filters.
public class PivotFilterOptions
public PivotFilterOptions()
Gets or sets the value filter setting. Specifies which DataField the current field is filtered by. The value represents the index of the referenced DataField in the DataFields collection.
public int AppliedDataField { get; set; }
Gets or sets a brief description of the filter.
public string Description { get; set; }
Gets or sets a value indicating the selection direction of the 'top 10 filter'. 'True' means selecting the top n items, and 'false' means selecting the bottom n items. The default value is 'true'.
public bool IsTop10Type { get; set; }
Gets or sets the name of the filter.
public string Name { get; set; }
Gets or sets a value indicating whether the date filter should use whole days in its filtering criteria.
public bool WholeDayFilter { get; set; }