Commit ff4f2af597aa932e55a5924f21a215cb6d7d5c61
1 parent
2d8a5753
Exists in
master
and in
2 other branches
Log problems with the logarithmic scale.
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
web/static/js/swapp.ls
... | ... | @@ -383,6 +383,8 @@ export class TimeSeries |
383 | 383 | |
384 | 384 | @xScale = d3.scaleTime().domain(@xDataExtent) |
385 | 385 | @yScale = d3.scaleLinear().domain(@yDataExtent) |
386 | + # Domain on a log scale MUST NOT cross zero | |
387 | +# @yScale = d3.scaleLog().domain(@yDataExtent) | |
386 | 388 | |
387 | 389 | formatMillisecond = d3.timeFormat(".%L") |
388 | 390 | formatSecond = d3.timeFormat(":%S") | ... | ... |