Page MenuHomePhabricator

Automatically select the range for charts in a general way
ClosedPublic

Authored by epriestley on May 8 2019, 3:55 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 8:11 AM
Unknown Object (File)
Thu, Apr 11, 4:20 AM
Unknown Object (File)
Sun, Apr 7, 3:58 PM
Unknown Object (File)
Fri, Apr 5, 1:13 AM
Unknown Object (File)
Tue, Mar 26, 7:14 PM
Unknown Object (File)
Tue, Mar 26, 7:14 PM
Unknown Object (File)
Tue, Mar 26, 7:14 PM
Unknown Object (File)
Feb 20 2024, 2:32 AM
Subscribers

Details

Summary

Ref T13279. Replace the hard-coded default range with a range computed by examining the chart data.

Instead of having a "Dataset" return a blob of wire data, "Dataset" now returns a structure with raw wire data plus a range. I expect to add more structured data here in future changes (tooltip/hover event data, maybe function labels).

Test Plan

Screen Shot 2019-05-08 at 8.53.20 AM.png (949×1 px, 194 KB)

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

amckinley added inline comments.
src/applications/fact/chart/PhabricatorChartStackedAreaDataset.php
133

Not sure where in the stack this should live, but we should probably scale y-max by 110% or something so we don't give the appearance of truncating the data (and the y-min by -110% if any data points go below 0).

This revision is now accepted and ready to land.May 21 2019, 10:30 PM

Yeah, I ideally want to try to round up, up to X%, to the nearest "nice" number, like if the range is 0-93 we show 0-100, since "100" is the nearest "nice round number" above 93. There was some simple code for this before (visual-max = actual-max * 1.2 or something) which makes the shape of the graph look good but doesn't produce the most satisfying ticks on the Y-axis or the ideally satisfying Y-max.

The algorithm for producing a "nice round number larger than X" isn't immediately intuitively obvious to me, though. And if the range is 0-100 inclusive, is it better to draw a chart with a satisfyingly round y-max, or to intentionally waste space at the top and select a dissatisfying visual y-max?

(We also don't need to tick the y-max -- we could tick at 100 and draw to 110.)