finos / perspective

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
https://perspective.finos.org/
Apache License 2.0
7.72k stars 1.05k forks source link

Update axis tick labels to accomodate small ranges #2522

Closed ada-x64 closed 4 months ago

ada-x64 commented 5 months ago

This PR updates d3fc chart axis tick values to accommodate ranges with small differences. It does so by calculating a precision based on the tick range's number of leading zeros. This is done with log10, but could probably be done with string manipulation as well.

texodus commented 4 months ago

Before:

Screenshot 2024-02-15 at 8 09 17 AM

After:

Screenshot 2024-02-15 at 8 09 04 AM
texodus commented 4 months ago

This PR does not fix #1610, but it does help address the underlying use case.

texodus commented 4 months ago

Closing for #2534