I am working an Angular Gantt Charts. I set my Gantt chart headers to show only minutes. Also I want to set from minutes and to minutes range. I have coded like below. But It always display the entire day view as minutes. Any idea? to show only the range in minutes? and Is It possible to show the headers in milliseconds?
$scope.options = {
fromDate:new Date(2013, 10, 15, 14, 0, 0),
toDate:new Date(2013, 10, 15, 17, 50, 0)}
$scope.data = [
{name: 'row2', tasks: [
{name: 'task3', from: new Date(2013, 10, 15, 15, 0, 0), to: new Date(2013, 10, 15, 15, 10, 0)},
{name: 'task4', from: new Date(2013, 10, 15, 16, 20, 0), to: new Date(2013, 10, 15, 16, 50, 0)}
]
}
]
<div gantt data="data" from-date = "options.fromDate" to-date = "options.toDate" headers="['minute']" >
<gantt-tree> </gantt-tree> </div>