Trying to make something similar to GitHub's contribution heat map. The documentation has a great demo here:
https://ej2.syncfusion.com/angular/documentation/heatmap-chart/axis#limiting-labels-in-date-time-axis
It does exactly what I want, except it's populated through Array Table Binding and I'd like to adapt it to JSON Cell Binding.
I attempted to do so, here:
https://stackblitz.com/edit/angular-jumcd9-4wjxkf?file=app.component.html,app.component.ts
It only shows data points that are on the same weekday as the first data point. Removing the `increment: 7` that is the cause of it results in the data points cascading to the right, instead of being stacked.
Any guidance you can offer on how to replicate the documented example from one binding type to another? I have complete control on how the dataSource JSON is produced.