Something I could do in Vue, but doesn't appear to work in Angular 4:
<div class="time-translate" [ngStyle]="{transform: `translate3d(${gridTranslateX}px, 0, 0)`}">
It seems I have to go back to doing it the old Angular 1.x way:
<div class="time-translate" [ngStyle]="{transform: 'translate3d(' + gridTranslateX + 'px, 0, 0)'}">
Is there a way to use ES6 template strings in an Angular 4 html template?