Created attachment 38155 [details] Simple test plan to show the missing graphs The scaling of the bars/lines in the components Aggregate Graph/Response Time Graph seems broken. While the numbers are shown correctly, no bars can be seen (probably happens when numbers are smaller than 1000 ;)) This is due to a small change to update our usage of Java APIs to a more modern style, where we changed the rounding mode to allow rounding down to zero, which would break the scaling.
commit 37be72fc48121c142c0a4be1c634373e0f929882 AuthorDate: Wed Jan 5 16:23:01 2022 +0100 No Graphs displayed in Aggregate Report/Response Time Graph Make sure, that we scale away from zero (which is in our case mostly up). Otherwise we might end up with a scaling factor of zero, which would result in really small images. Bugzilla Id: 65784 --- .../src/main/java/org/apache/jmeter/visualizers/AxisGraph.java | 2 +- .../main/java/org/apache/jmeter/visualizers/RespTimeGraphChart.java | 4 ++-- xdocs/changes.xml | 1 + 3 files changed, 4 insertions(+), 3 deletions(-)
OP wrote on mailing list, that the graphs work again in nightly build.
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/5614