My current goal is to incorporate crossfilter functionality into my highcharts project. Within the dataset, there exists a key labeled 'date'. The values within the date key are structured as 'yyyy-mm' (e.g., 2018-04).
During implementation, I aim for the X-axis to showcase dates in a specific format: for example, display June-18 instead of 2018-04.
I managed to achieve this by extracting the month and year from the date key. However, issues arise when the x-axis category names differ from those provided in the dataset. In such cases, crossfilter malfunctions - clicking on one bar causes all other chart values to reset to zero. By reverting the x-axis categories to match the original dataset format, everything functions properly once again.