You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@jmeter.apache.org by bu...@apache.org on 2018/06/25 20:32:45 UTC

[Bug 60705] Aggregate Report: Column titles for percentiles in changing when reordered.

https://bz.apache.org/bugzilla/show_bug.cgi?id=60705

--- Comment #1 from Felix Schumacher <fe...@internetallee.de> ---
The problem here is, that HeaderAsPropertyRenderer#getText combines the raw
column label (that gets moved around by ObjectTableModel) with the
ColumnsMsgParameters from HeaderAsPropertyRendererWrapper (which stay at their
original places).

So we would either have to format the labels at an earlier moment and loose the
ability to switch languages in the GUI, or place the columnsMsgParameters into
ObjectTableModel - so that they can get shuffled, too -, or convert
columnsMsgParameters to a map (label to parameter), so that we can look up the
correct parameters for the labels.

At the moment I tend to favour the early formatting of the label, even if we
loose changing the language for this particular view.

-- 
You are receiving this mail because:
You are the assignee for the bug.