Probably this is a silly question since I’m starting with toolkit now, but it’s driving me crazy. I’m trying to display a visual (a simple bars), but I keep getting this error:
A provider is required
I’m using an Elasticsearch server in my local and I included the cft-elasticsearch-provider.min.js library in my app too. So honestly don’t know what is going on. This is the code for my visualization:
cf.provider('Elasticsearch')
.source('prtz_reports')
.groupby(iff_source)
.metrics(delegated)
.graph('Bars')
.execute()
```