Skip to content

Commit b4d9e3b

Browse files
committed
visualizer: switch order in area chart
1 parent 13e2a8e commit b4d9e3b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ui/src/components/Transactions/TransactionsView.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ export const TransactionsView: FC = ({ }) => {
3333
<XAxis dataKey="Time" />
3434
<YAxis />
3535
<Tooltip />
36-
<Area type="monotone" dataKey="Created" stackId="1" stroke="#9e0142" fill="#9e0142" />
37-
<Area type="monotone" dataKey="In Input Block" stackId="1" stroke="#d0394e" fill="#d0394e" />
38-
<Area type="monotone" dataKey="In Endorser Block" stackId="1" stroke="#ef6445" fill="#ef6445" />
39-
<Area type="monotone" dataKey="On Chain" stackId="1" stroke="#fb9d56" fill="#fb9d56" />
36+
<Area type="monotone" dataKey="On Chain" stackId="1" stroke="#9e0142" fill="#9e0142" />
37+
<Area type="monotone" dataKey="In Endorser Block" stackId="1" stroke="#d0394e" fill="#d0394e" />
38+
<Area type="monotone" dataKey="In Input Block" stackId="1" stroke="#ef6445" fill="#ef6445" />
39+
<Area type="monotone" dataKey="Created" stackId="1" stroke="#fb9d56" fill="#fb9d56" />
4040
</AreaChart>
4141
</ResponsiveContainer>
4242
</div>

0 commit comments

Comments
 (0)