I noticed that whenever I’m plotting a graph with multiple tracked columns, and there are overlapping zeroes, the graph does not plot correctly. Those points get skipped entirely and not plotted at all, and the line traces to the next available non-zero point instead.
I’m not sure this is a bug … Unless you’ve aggregated your values in the Chart Options .
The chart seem to skip some values because your values are the same in your Column 2, Column 3 and Column 4 … The zeroes (0) are the not problem here … It’s just the fact that your values are the same .
Which is why you should toggle On the Aggregate values in the Chart Options to combine those exact same values into a single data point .
Here’s a sample where I somehow reproduced your setup .
The first chart display the values from the table but with the Aggregate values toggled Off. The second one has Aggregate values toggled On. In that chart, the “skipped” values will be plotted .
Thanks for the help! I don’t understand why you’d want to skip points in the graph when not aggregating values, but this workaround works for my current use case since I’m already doing a custom aggregation into a column before feeding that value into the graph, so I can use a SUM without issues.
Also, cheers for the heads up on it being duplicate values and not just zeros. I’ll have to pay attention to that going forward too!