In a vertical stacked bar chart, is there any way to make the X-axis continuous?

In a vertical stacked bar chart, is there any way to make the X-axis continuous?
For example, when there are counts of [1,2,5] as data, normally only [1,2,5] is displayed, but I would like to display [1,2,3,4,5] on the label, including [3,4], which does not exist. (0 as count)

Unfortunately you would need to add rows in your dataset which isn’t the easiest of endeavors.

This can be accomplished via SQL (with unions) or joins and some sort of coalesce statement to grab both 1,2,5 & 3,4.

However, this would be great to have as a feature.

1 Like