I faced the same problem here. Although it is about the resource view in my case, I thought that it should be possible to add the table-striped class to the calendar, because it is using the bootstrap-theme. After studying the code for a while, I identified two tables that could be 'striped'. I added the following code after the render() command:
....
...
calendar.render();
$('.fc-datagrid-body').addClass('table-striped');
$('.fc-scrollgrid-sync-table.table-bordered').addClass('table-striped');
And it did the trick! I've got striped lanes. The default color was a little bit too dark for me, so I changed the color with the following code:
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
background-color: #f1f1f1; <!-- color I prefer above the default -->
}
I hope it works for you as well!