Interface IPivotBase
The standard pivot view used by the PivotViewController for displaying a pre-configured pivot from a IPivot
Uses the PivotViewResultParams parameter type for the view
Inherited Members
Namespace: LemonEdge.Client.Core.Views.Core
Assembly: ClientCore.dll
Syntax
[ViewDescriptor(typeof(PivotViewEnumerator))]
public interface IPivotBase : IModelView
Methods
DisplayData(IEnumerable<ISQLWrapperResult>)
Populates the pivot with the specified data to be displayed in the client ui
Declaration
void DisplayData(IEnumerable<ISQLWrapperResult> data)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<ISQLWrapperResult> | data | The results of the chart pivot to be displayed in the chart |
DisplayDesign(PivotAxis, SQLWrapperInterpretor, IEnumerable<IPivotFieldInfo>)
Displays the specified pivotAxis
design in the client application ui
Declaration
void DisplayDesign(PivotAxis pivotAxis, SQLWrapperInterpretor sqlWrapper, IEnumerable<IPivotFieldInfo> items)
Parameters
Type | Name | Description |
---|---|---|
PivotAxis | pivotAxis | The definition of the axis type to pivot on |
SQLWrapperInterpretor | sqlWrapper | The underlying sql wrapper that will be executed to provide the data for the display |
System.Collections.Generic.IEnumerable<IPivotFieldInfo> | items | The fields, etc for the pivot desgin |