kenoyer130
29 Dec 2011, 11:52 AM
You can actually see this in your samples- >
http://sencha.com/examples-dev/#ExamplePlace:stackedbarchart
Hover over the stacked series and note that the hover values are too small for the actual space. For instance, 2005 - comedy shows a tooltip value of 111M but only goes up to around 38M.
The problem seems to be that the Max height of the stacked bar chart is based on the largest one in the series, not the largest total of the series stacked.
Any ETA on a fix as we have a project going out in a few weeks that this affects!
If I had to guess, I would say that in BarSeries.java method calculateBounds in the if(stacked) check, the sum of the yFields should be added to the totalPositive collection, not each individual series value.
http://sencha.com/examples-dev/#ExamplePlace:stackedbarchart
Hover over the stacked series and note that the hover values are too small for the actual space. For instance, 2005 - comedy shows a tooltip value of 111M but only goes up to around 38M.
The problem seems to be that the Max height of the stacked bar chart is based on the largest one in the series, not the largest total of the series stacked.
Any ETA on a fix as we have a project going out in a few weeks that this affects!
If I had to guess, I would say that in BarSeries.java method calculateBounds in the if(stacked) check, the sum of the yFields should be added to the totalPositive collection, not each individual series value.