Hello.... I stumbled into this OutSystems Chart examples while looking for solution to my stacked bar chart : https://charts.outsystems.com/components/chart-types/bar-chart.
When looking into it, I found something interesting..
This is the original result from the sample..
When I delete the data (Finance: 111), the chart become like this.
You can see that it looks like the missing part is from 'sales', not 'finance'. but actually it's not missing, but it 'moved' to the other group/label.
The Sales data moved to the Marketing (I mark with the number 1).
The Marketing moved to the IT (no 2), IT moved to the Human Resource (no 3), Human Resource moved to the Finance (no 4).
So this bar chart become invalid, it didn't display the correct data.
Does anyone ever encounter this issue?
Hi @Christian B Susanto and @Dorine Boudry!
Hope you're doing well.
I looked into this, and looks like the xAxis "ValuesType" is wrongly set (possibly using the default value).
If you change the xAxis property "ValuesType" to "Category":
And that should display the data in the correct way:
If you have any question let me know.Cheers,RG
Hi @Christian B Susanto ,
yes this is a bug.
It was introduced a year ago with the new v3.0 version of charts.
See this and this post, where I already reported it.
You can do one of 2 things :
Dorine
@Gonçalo Martins ,
Adding an oml demonstrating the difference between v1 and v3.
Turns out that even in v1, this worked incorrect for line charts.
Thanks @Dorine Boudry . This solves my problem.
Hi RG.... tried this and worked. thanks..