You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In GridLabelRenderer.adjustHorizontal the call to humanRound is hardwired to false for the second argument. This means that the increments between labels will always round down. That leads to data being truncated from the graph.
An easy way to see this is a one-line modification of the all-XML example given here. Replace the last line of
In GridLabelRenderer.adjustHorizontal the call to humanRound is hardwired to false for the second argument. This means that the increments between labels will always round down. That leads to data being truncated from the graph.
An easy way to see this is a one-line modification of the all-XML example given here. Replace the last line of
with
and you will see that the data, which runs from 100 to 250, is truncated at 180, hiding two of the four points.
There are several ways to address this I suppose, including
The text was updated successfully, but these errors were encountered: