Skip to content

KX Dashboards

Create a dashboard

KX Dashboards is an interactive data visualization tool that enables users to query and present data. In this example, a sample dashboard will be created using the extraction APIs written in the last section.

  • To create one, select Tools > Open Builder > Dashboard Builder from KX Control.

Screenshot

  • Create a new dashboard by clicking the highlighted icon.

Screenshot

  • You can click on the >> button to expand the menu to see what the icons entail.

Screenshot

  • Click Preview to study the interactions of the dashboard.

Screenshot

Data grid

  • Drag a data grid from the icon on the left-hand side, and adjust the size.

Screenshot

  • To configure the data source, click on the data source on the right-hand side menu.

Screenshot

  • A pop up will appear. Click on New and create a data source named MemBucketData. Select the Analytic radio button and the .monPublic.getMemBucket analytic from the menu. As we've defined this analytic to take in a dictionary as the parameter, select dict and add the parameters as below. Set the Subscription to Managed.

Screenshot

  • Now, execute the query to see if you get data back. If successful, you should see a table returned on the bottom:

Screenshot

  • Select Apply and Select Item.

  • You should see a table displaying where you dragged the data grid.

Execution Order

It is important to execute the data source in this order: Execute > Apply > Select Item.

Screenshot

Parameterise the data grid

Next, add components to parameterise the dashboard and data grid. Given are simple examples, but these can be altered to make it dynamic.

Datepicker

  • Next, create components to filter the same data set by the time column.

  • Create two datepickers. These will be later linked to the MemBucketData datasource.

  • Drag a datepicker and type start: in Basics > Label. Click on the text box of Selected Date which will prompt a pop-up.

  • This is the screen to create a View State. Click on New and name it start. Configure the Properties as below and select any past date. Click Select Item.

Screenshot

  • Drag another datepicker and do the same for end, but instead, select Now for current timestamp or any future date.

Screenshot

Currently, these datepickers aren't attached to the data source so it won't do anything when you select the date.

  • Go back to the data grid and open the MemBucketData data source. In params, set the start and end as the View States we've just created. The dates choosen via the datepicker now gets sent as the parameters to the MemBucketData data source that calls the .monPublic.getMemBucket analytic.

Screenshot

  • In the Preview mode, change the start and end timestamp, and test if data is correctly filtered by time.

The next step is to create a drop down list. This is used to filter data by sym.

  • Drag the drop down list icon.

  • In Basics > Selected Value, create a new View State and name it symList. Set the values as below and click Select Item.

Screenshot

  • Make sure that Multi-select is checked.

  • In Basics > Items, hard-code the 4 syms.

Dynamic Selection

The example is hard-coded for simplicity, but they may be driven from a query to dynamically extract syms.

Screenshot

  • You can play around with the settings such as changing layout sizes and the Label to make it more intuitive for users.

  • Instead of attaching the symList View State to the MemBucketData data source, create a virtual query.

Virtual query

Virtual queries utilize data loaded to the client. Assigned data sources to the virtual query do not re-query the database.

  • Create a new data source named MemBucketChart and write a virtual query that utilize MemBucketData data source. Allow filtering of multiple syms to source the data grid.

Screenshot

function (source, syms, callback) {

   source.rows = _.filter(source.rows, (r)=> {
     return _.indexOf(syms, r.sym) >= 0; 

   });
   source.rows = _.sortBy(source.rows, "time");

   callback(source);
}
  • Execute the query to see if you successfully get data back. Select Apply and Select Item.

  • Now add the MemBucketGrid data source to the data grid.

Line graph

  • Next, create a line graph that displays the physical and virtual columns of a single sym on a time series.

  • Drag a Canvas Chart to an empty space.

Parameterise the line graph

  • To filter time, use the same start and end view state created before.

  • Drag another drop down list icon.

  • In Basics > Selected Value, create a new View State and name it singleSym. Set the values as below and click Select Item.

Screenshot

  • Make sure that Multi-select is unchecked.

  • Similarly to above, hard-code the 4 syms in Basics > Items.

Screenshot

Virtual query

  • Create a new data source named MemBucketChart and write a virtual query that utilize MemBucketData data source. Allow filtering of a single sym to source the line graph.

Screenshot

function (source, sym, callback) {

   source.rows = _.filter(source.rows, (r)=> {
     return sym === r.sym; 

   });
   source.rows = _.sortBy(source.rows, "time");

   callback(source);
}
  • Execute the query to see if you successfully get data back. Select Apply and Select Item.

  • Now add the MemBucketChart data source to the canvas chart.

  • Set two layers for colums: virtual and physical.

Screenshot

Screenshot

-Set the axes.

Screenshot

Testing

  • In preview mode, test if you can filter the data grid and line graph by each of the associated drop-down menu.

Screenshot

Entitlements

  • Once you are done creating your Dashboard, give the user permission to access it.

  • Click on an empty space in your Dashboard. On the right-hand side, open Permissions and check Read Access for KxwUsers.

Screenshot

  • Logout of Administrator and login to Dashboards with kxwUser. You will be prompted to reset your password. In this example, we've set the new password as kxwarehouse which will be used in further examples.

Screenshot

  • Reset your password and re-login with kxwUser and the new password. You should be able to see the new Dashboard.

Add to package

The dashboard does not automatically get assigned to a particular package. Manually add this to the KxWarehouse package.

  • Go back to KX Control and find the Dashboard in the Unpackaged Entities on the Navigation panel.

  • Open the Package Exporter tree from Tools > Package Exporter.

  • Drag the Dashboard into the tree and hit Save.

Back to top