Articles in this section
Category / Section

How to select top "n" records from Cube in WPF OlapClient?

2 mins read

In WPF OlapClient, you can select the top "n" records from the Cube by using TopCountElement in OlapReport.

C#

OlapReport olapReport = new OlapReport();olapReport.Name = "Customer Report";olapReport.CurrentCubeName = "Adventure Works"; DimensionElement dimensionElementColumn = new DimensionElement();//Specifying the Name for the Dimension ElementdimensionElementColumn.Name = "Customer";dimensionElementColumn.AddLevel("Customer Geography", "Country"); //Creating Measure ElementMeasureElements measureElementColumn = new MeasureElements();measureElementColumn.Elements.Add(new MeasureElement { Name =
"Internet Sales Amount" }); DimensionElement dimensionElementRow = new DimensionElement();//Specifying the Dimension NamedimensionElementRow.Name = "Date";dimensionElementRow.AddLevel("Fiscal", "Fiscal Year"); //Filter the top 5 elements of "Internet Sales Amount".TopCountElement topCountElement = new
TopCountElement(AxisPosition.Categorical, 5);topCountElement.MeasureName = "Internet Sales Amount"; /// Adding Column MembersolapReport.CategoricalElements.Add(dimensionElementColumn);///Adding Measure ElementolapReport.CategoricalElements.Add(measureElementColumn);///Adding Measure ElementolapReport.CategoricalElements.Add(topCountElement);///Adding Row MembersolapReport.SeriesElements.Add(dimensionElementRow);

VB

Dim olapReport As OlapReport = New OlapReport()
olapReport.Name = "Customer Report"
olapReport.CurrentCubeName = "Adventure Works"
Dim dimensionElementColumn As DimensionElement = New DimensionElement()
'Specifying the Name for the Dimension Element
dimensionElementColumn.Name = "Customer"
dimensionElementColumn.AddLevel("Customer Geography", "Country")
'Creating Measure Element
Dim measureElementColumn As MeasureElements = New MeasureElements()
measureElementColumn.Elements.Add(New MeasureElement With {.Name = "Internet Sales Amount"})
Dim dimensionElementRow As DimensionElement = New DimensionElement()
'Specifying the Dimension Name
dimensionElementRow.Name = "Date"
dimensionElementRow.AddLevel("Fiscal", "Fiscal Year")
'Filter the top 5 elements of "Internet Sales Amount".
Dim topCountElement As TopCountElement = New TopCountElement(AxisPosition.Categorical, 5)
topCountElement.MeasureName = "Internet Sales Amount"
''' Adding Column Members
olapReport.CategoricalElements.Add(dimensionElementColumn)
'''Adding Measure Element
olapReport.CategoricalElements.Add(measureElementColumn)
'''Adding Measure Element
olapReport.CategoricalElements.Add(topCountElement)
'''Adding Row Members
olapReport.SeriesElements.Add(dimensionElementRow)

 


Conclusion

I hope you enjoyed learning about how to select top "n" records from Cube in OlapClient.

You can refer to our WPF Olap Client feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied