I've been following the online examples (at https://github.com/keen/keen-dataviz.js/) and I'm successfully producing Dataviz pie-charts, using this keen-dataviz CDN library:
<script src="//d26b395fwzu5fz.cloudfront.net/keen-dataviz-1.1.3.js"></script>
(CDN is taken from example here)
I'm now trying to add my pie-charts to a dashboard layout.
The dashboard example I'm following uses local js libaries rather than a CDN, e.g.:
<script type="text/javascript" src="../../assets/lib/keen-js/dist/keen.min.js"></script>
The local libraries in the dashboard github seem to include an older version of Dataviz (e.g. .chartType
inplace of .type
). I've been tweaking for ages (and have solved some problems) but I can't get my original pie-charts working with the dashboard. (Unfortunately my pie-charts query an internal data source so I can't give a working example...) But the bottom line is, these two libraries are incompatible...
My question is, is there an up-to-date dashboard js library I can use with the latest keen-dataviz.js library?