Home > Software design >  Filtering on Range of Dates contour
Filtering on Range of Dates contour

Time:12-08

My data is as following:

Date_Column
-------------------------------
Aug 29, 2022 1:23:41 PM  02:00
Sep 25, 2022 6:21:56 PM  02:00
-------------------------------

Goal is to have a filter in contour dashboard where a user can filter data as shown in the picture. selecting range of dates

Can someone please let me know how to implement the same in Contour Foundry

CodePudding user response:

I'm assuming you want the user to be able to select the date range when viewing the analysis rather than when the analysis is being created.

Take a look at the parameterization section of the Contour documentation: https://www.palantir.com/docs/foundry/contour/analysis-parameterize/ You can specify a range_start and a range_end parameter and use those values in a filter board (https://www.palantir.com/docs/foundry/contour/boards-filter/#filter-board) as you would with fixed values.

  • Related