Diagram - visited transects
As an API consumer, I want to be able to visualise active transect in specified period of time.
AC
-
Diagram type VisitedTransects is implemented: -
count of transects that has inspections with createdAt in specified time range, per every single day in specified date range and according to connected FilterHistory -
displayType: "bar" -
title: "Visited Transects" -
xLabel: "Day" -
yLabel: "Count" -
dataSeries JSON format:
[
{"Day": 1, "Count": 5},
{"Day": 2, "Count": 10},
{"Day": 3, "Count": 20},
{"Day": 4, "Count": 15},
...
]
-
Tests
Edited by Michael Voigt