Schedules Chart
The composite of the schedule detail view and scrubber.
Edit start and end dates to change the data:
Start:
End:
Schedule count:
- HTML
<div class="t-content" ng-controller="SchedulesExampleController as $ctrl"> <inv-schedule-chart style="height: 400px" data="$ctrl.data" now="$ctrl.now" start="$ctrl.start" end="$ctrl.end" on-schedule-selected="$ctrl.scheduleSelected(schedule)" task-detail-template="$ctrl.taskDetailTemplate"> </inv-schedule-chart> <div>Edit start and end dates to change the data:</div> <div> Start: <inv-datetime-entry entry-mode="date-time" value="$ctrl.editValues.start" on-date-changed="$ctrl.changedStart(date)"></inv-datetime-entry> End: <inv-datetime-entry entry-mode="date-time" value="$ctrl.editValues.end" on-date-changed="$ctrl.changedEnd(date)"></inv-datetime-entry> Schedule count: <input ng-model="$ctrl.editValues.scheduleCount"/> <button class="inv-button" ng-click="$ctrl.updateData()">Apply</button> </div> </div>