Hi, I’ve put together a dashboard and I’m using the Time Slider. I’ve configured the unit steps to days. When I click the play button button I would expect to see data chaging across days (day by day) but nothing happens. This is the AQL in Studio for the Time Slider:
var field = cf.Attribute('refill_date').func('DAY');
var myChart = cf.provider('BigQuery')
.source('prods_2014')
.timeField(field)
.graph('Time Slider')
.element('chart')
.set('player' , {
'step-unit' : 'DAY',
'step': 1,
'refresh': 'immediate',
'autoplay': true
})
myChart.execute()
I even set the autoplay to true, but nothings happens. Am I missing something?