Skip to content
Snippets Groups Projects
Unverified Commit d9aeb8db authored by Jason's avatar Jason Committed by GitHub
Browse files

Change net worth graph to show more detail in compact card view (#2132)

* Change net worth graph to show more detail in compact card view

* Added release notes

* Update release notes

* Update VRT images
parent 85c0352a
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -126,22 +126,20 @@ function NetWorthGraph({
{compact ? null : (
<CartesianGrid strokeDasharray="3 3" vertical={false} />
)}
{compact ? null : (
<XAxis
dataKey="x"
tick={{ fill: theme.pageText }}
tickLine={{ stroke: theme.pageText }}
/>
)}
{compact ? null : (
<YAxis
dataKey="y"
domain={['auto', 'auto']}
tickFormatter={tickFormatter}
tick={{ fill: theme.pageText }}
tickLine={{ stroke: theme.pageText }}
/>
)}
<XAxis
dataKey="x"
hide={compact}
tick={{ fill: theme.pageText }}
tickLine={{ stroke: theme.pageText }}
/>
<YAxis
dataKey="y"
domain={['auto', 'auto']}
hide={compact}
tickFormatter={tickFormatter}
tick={{ fill: theme.pageText }}
tickLine={{ stroke: theme.pageText }}
/>
<Tooltip
content={<CustomTooltip />}
formatter={numberFormatterTooltip}
......
---
category: Bugfix
authors: [jasonmichalski]
---
Fix net worth graph to show more detail in compact card view
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment