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
F18408794: D20503.id48896.diff
Sat, Aug 30, 3:04 AM
F18395476: D20503.id.diff
Fri, Aug 29, 11:11 AM
F18394849: D20503.id49003.diff
Fri, Aug 29, 10:32 AM
F18394687: D20503.id49003.diff
Fri, Aug 29, 10:12 AM
F18344848: D20503.diff
Tue, Aug 26, 10:32 AM
F18100499: D20503.id.diff
Sat, Aug 9, 11:55 AM
F18089616: D20503.id48896.diff
Wed, Aug 6, 11:52 AM
F18088797: D20503.id48896.diff
Wed, Aug 6, 9:33 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.)