Hi, we had the same problem with the Time Aware template where it seems impossible to force the time slider to filter the data on a single year or "time unit" (tick mark). To resolve this behavior and force the filter to show the data "per year" only, we added some CSS in the template's configuration to hide the two draggable elements. This should do the trick! In the Application's theme tabs, you can add some custom CSS at the end. Just add this code in the text input : div.dijitSliderMoveable { display:none; } Then you can choose to display only the start or the end date for our case. time slider time aware app
... View more