bridge_ui: Adding right padding to stats chart x-axis labels
This commit is contained in:
parent
1c2a70554b
commit
7227f9089e
|
@ -38,6 +38,7 @@ const TVLAreaChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={formatTVL}
|
tickFormatter={formatTVL}
|
||||||
|
|
|
@ -47,6 +47,7 @@ const TVLLineChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={formatTVL}
|
tickFormatter={formatTVL}
|
||||||
|
|
|
@ -37,6 +37,7 @@ const TransactionsAreaChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={formatTransactionCount}
|
tickFormatter={formatTransactionCount}
|
||||||
|
|
|
@ -46,6 +46,7 @@ const TransactionsLineChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={formatTransactionCount}
|
tickFormatter={formatTransactionCount}
|
||||||
|
|
|
@ -32,6 +32,7 @@ const VolumeAreaChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={formatTVL}
|
tickFormatter={formatTVL}
|
||||||
|
|
|
@ -37,6 +37,7 @@ const VolumeLineChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={formatTVL}
|
tickFormatter={formatTVL}
|
||||||
|
|
|
@ -164,6 +164,7 @@ const VolumeStackedBarChart = ({
|
||||||
axisLine={false}
|
axisLine={false}
|
||||||
tickLine={false}
|
tickLine={false}
|
||||||
dy={16}
|
dy={16}
|
||||||
|
padding={{ right: 32 }}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
tickFormatter={(tick) => `${tick}%`}
|
tickFormatter={(tick) => `${tick}%`}
|
||||||
|
|
Loading…
Reference in New Issue