<PackageReference Include="Relativity.Services.DataContracts.SDK" Version="13.5.0" />

Relativity.Services.PivotProfile.PivotBase

public class PivotBase

Specifies the orientation option for the Bar and StackedBar chart types.

public enum ChartTypeOption

Represents all available types of charts.

public enum DateTimePartOption

Specifies how to summarize date-based data that is returned for a GroupBy or PivotOn field in a Pivot query.

public enum ResultLimitOption

Specify options to limit the result.

public enum SortOnOption

Represents sort setting for the pivot query.

public enum SortOrderOption

Represents the order in which records will be sorted.

public class ToggleOptions

Represents additional pivot options.

Gets or sets the value of the Bar and StackedBar charts orientation.

public ChartTypeOption? ChartType { get; set; }

Gets or sets what kind of chart is used.

Gets or sets the time interval to use when calculating results for a GroupByField field, if the GroupByField field is a Date field.

public FieldRef GroupByField { get; set; }

Gets or sets the field to use as the Group By value in a Pivot query and result set. Grouping functionality (Field.AllowGroupBy property) must be enabled for a field before the field can be used as a GroupByField field.

public ResultLimitOption? GroupByResultLimit { get; set; }

Gets or sets the value to limit the data results.

public int? GroupByResultLimitValue { get; set; }

Gets or sets the number of rows to be taken, if the value of the GroupByResultLimit property is set to the Top or Bottom.

public string Name { get; set; }

Gets or sets the pivot name.

public ObjectTypeRef ObjectType { get; set; }

Gets os sets reference to the object type.

public int? PageSize { get; set; }

Gets or sets the value of the pagesize

Gets or sets the time interval to use when calculating results for a PivotOnField field, if the PivotOnField field is a Date field.

public FieldRef PivotOnField { get; set; }

Gets or sets the field to use as the Pivot On value in a Pivot query and result set. Pivot functionality (Field.AllowPivotOn property) must be enabled for a field before the field can be used as a PivotOnField field.

public ResultLimitOption? PivotOnResultLimit { get; set; }

Gets or sets the value to limit the data results.

public int? PivotOnResultLimitValue { get; set; }

Gets or sets the number of rows to be taken, if the value of the PivotOnResultLimit property is set to the Top or Bottom.

public SortOnOption? SortOn { get; set; }

Gets or sets the value which determines the basis on which the chart information is sorted.

public SortOrderOption? SortOrder { get; set; }

Gets or sets the order in which data are sorted.

public bool? SwitchSeries { get; set; }

Gets or sets the value indicating wherther should be switched the Group By and Pivot On fields' positions or not.

public ToggleOptions Toggles { get; set; }

Gets or sets additional pivot options.

public PivotBase()