Currently, the markers of intensity graphs are left-aligned with the intensity pixels. This is most noticable when graphing small arrays, but is a general problem. Have a look at the left picture (x0 and dx are at the default). There is one too many markers on each axis and it is errorprone to read out the coordinates of a certain pixel because it is always betwen two adjacent markers.
(If we graph a 1D array with 10 elements on a plain graph with the same size (loose fit off), the axis will go from 0..9. It is misleading to show another marker at 10 in the case of the intensity graph!)
Correct would be to center the axis markers on the pixels as simulated in the image on the right. Now the limits are correct!
The problem is even more severe with cursors locked to the plot. The cursors align with the markers and thus fall right between four adjacent pixels (left) while they should be smack dab in the middle of exactly one (right). Currently, we have a 25% chance of picking the right pixel with a cursor unless we are very carefully!
Idea summary: The markers of intensity graphs need to be centered on the graph pixels. Same for cursors.
(...of course the same applies to intensity charts and similar)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.