Report Tables

Tables are a major part of Ignition Reporting. They are composable and highly flexible, giving Reporting users the ability to flexibly layout and organize tabular data.

Overview

Tables are objects that display data in a structured, repetitious format. Their complexity can range from trivially simple to complicated, but fundamentally they do the same thing - take the data given to them and repeat structured row for each row or set of data provided. The Reporting engine will automatically create new pages to fit all data within the table's boundaries while applying your formatting preferences (such as font, size, layout and alignment) each step along the way. Combine that feature with powerful data manipulation and expressive layout tools, and you get an object that often forms the basis of your reports.


We'll start by taking a look at the various parts of the base table component and move into more features and example.

The Table Component

The Table images/download/attachments/4492765/table-palette-icon.png component can be created by dragging it from the Report Design Palette, or by simply dragging a Data Source from the Key Browser to a page in your report. A new Table with no bound Data Key is fairly simple looking, but hides a wealth of functionality. To best understand how to use a table, you'll want to have some familiarity with the Report Design Concepts (Version 7.7) we cover in the design introduction. Selection and Super Selection are particularly important when dealing with Tables.

When you create a table, by default you will see something like this on the page.

Basic Table Example

images/download/attachments/4492765/Basic-Table-Example.png

Anatomy of a Table

While not exactly complex, it's important to understand the different parts of a table and how they interact. First, the size of the component on the design page dictates how large the table can be on the generated report. Second, in this table, we have a single dark bar with the text "Object Details" on it, with four fields we can super select above. These dark bars are called Rows, we will talk about them soon.

If you look at the Table Configuration panel, you will see that it has a default data key of "Objects", which matches the Details row on the component. Changing the Data Key will also change the name on the row making it easier to determine what you are looking at when editing multiple tables or Grouping.

images/download/attachments/4492765/Table-config.png

Get Familar with the Table's Features!

images/download/attachments/4492765/Table-Tip.png

Sorting

Sorting orders your data by a key or list of keys. There are three types of Sorting in Tables.

  • Default - data is sorted based on the order in which it is retrieved.

  • Basic - takes a list of keys and sorts by the first one. If the sort results in a tie, the tie will be resolved by the next key in the list, and so on.

  • TopN - uses a single key path, with a Count value that allows a limit to the number of rows that are processed.

Basic and TopN sorts can be configured for either ascending ( images/download/attachments/4492765/ascending.png ) or descending ( images/download/attachments/4492765/descending.png ) sorts. They can also utilize aggregate (calculation) keys.

The TopN option Include Others images/download/attachments/4492765/include_others.png will include all values outside of the specified Count range by compressing them into a single row.

Basic Sort Example

We will look at the same table using different sorts. Both have the same exact layout (we made the first, and simply copy/paste to replicate). The first uses Default sort, the second will use a Basic Sort as configured in the image.

images/download/attachments/4492765/table_basic_sort_ascending.png

To alternate to descending, we could click the images/download/attachments/4492765/ascending.png icon and it would toggle to a descending sort.

These are our resulting tables, showing the left table sorted by its primary key (OrderID) and the right sorted by Ascending Subtotal.

images/download/attachments/4492765/table_unsorted_and_sorted.png

Filtering

Filtering gives the option of processing data based on an expression. The Filtering property can be found in the Property Inspector under the Properties tab.

images/download/attachments/4492765/table_sort_filter_prop.png

If the expression resolves false, the row will be skipped. Note: you do not need @ symbols to reference keys.

Filtered TopN Sort Example

This example is sorted descending by downtime and filtered by downtime greater than 20 minutes.

images/download/attachments/4492765/filtered-sorted.png

images/download/attachments/4492765/image2015-9-17_8-47-8.png

In this section ...