Tutorial: Summary and Pivot Chart

This example shows how to create a report with the summary and the graph on the same page.

Creating a new grid

1. Create a new grid application based on the following SQL.

SELECT
C.CompanyName,
D.Deptname,
R.DateRelease,
R.ValueRelease
FROM
companies C INNERJOIN R ON Creleases.CompanyID = R.CompanyID
INNERJOIN D ON RDepartments.DeptID = D.DeptID
WHERE
R.CompanyID NOTIN (6,7,8,9) AND
R.DeptID NOTIN (6,7,8,9)

2. Open the Group By folder and click on “Static Group By >> New Group By“.

3. Select the fields: C.CompanyName and D.DeptName and click Enable / Disable.

4. Click Totals and then click Fields.

5. Select the R.ValueRelease field and then click SUM.

6. Access the “Summary” guide in the application menu, then click on “Graphics >> Settings“.

7. Configure as the image below

Showing only pivot and graph summary

8. Return to the initial options “Grid Modules

9. Verify the “Summary” as the initial module and leave only this module and the “Graph” enabled. In the “Graph” options, change to display it on the “same page”.

10. Click on the “Run application” button.

Tutorials in the same category

Card View HTML

  This tutorial demonstrates how to create a Grid application using the “User defined” ori...

Evaluation Field in the Grid

In this tutorial, you will see how to use the evaluation fields in a Grid application.  We ...

Evaluation Field in Summary

In this tutorial, you will see how to create a Summary by using the evaluation fields. We can use ...

Grid with fixed toolbar

  In this example, we are going to develop a report using a fixed toolbar on the top so we can...

Comment this post