Fix a dumb bug on pseudo-numeric charts
This commit is contained in:
parent
bf8dca25b2
commit
503038d2a2
|
@ -86,11 +86,11 @@ export const PseudoNumericContractChart = (props: {
|
||||||
Date.now()
|
Date.now()
|
||||||
)
|
)
|
||||||
const visibleRange = [start, rightmostDate]
|
const visibleRange = [start, rightmostDate]
|
||||||
const xScale = scaleTime(visibleRange, [0, width ?? 0 - MARGIN_X])
|
const xScale = scaleTime(visibleRange, [0, width - MARGIN_X])
|
||||||
// clamp log scale to make sure zeroes go to the bottom
|
// clamp log scale to make sure zeroes go to the bottom
|
||||||
const yScale = isLogScale
|
const yScale = isLogScale
|
||||||
? scaleLog([Math.max(min, 1), max], [height ?? 0 - MARGIN_Y, 0]).clamp(true)
|
? scaleLog([Math.max(min, 1), max], [height - MARGIN_Y, 0]).clamp(true)
|
||||||
: scaleLinear([min, max], [height ?? 0 - MARGIN_Y, 0])
|
: scaleLinear([min, max], [height - MARGIN_Y, 0])
|
||||||
return (
|
return (
|
||||||
<SingleValueHistoryChart
|
<SingleValueHistoryChart
|
||||||
w={width}
|
w={width}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user