Skip to content

Commit 5e15c69

Browse files
committed
update charts
1 parent 233c72b commit 5e15c69

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

apps/web/src/components/tools/auth0/cumulative-signups-chart.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,19 +80,24 @@ export function Auth0CumulativeSignups(params: {
8080
// stack: 'Total',
8181
smooth: true,
8282
lineStyle: {
83-
width: 0
83+
width: 2,
84+
color: 'rgb(138 98 235)'
8485
},
8586
showSymbol: false,
8687
areaStyle: {
8788
opacity: 0.8,
8889
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
8990
{
9091
offset: 0,
91-
color: 'rgb(128, 255, 165)'
92+
color: 'rgb(138, 98, 235, 0.7)'
93+
},
94+
{
95+
offset: 0.5,
96+
color: 'rgba(138, 98, 235, 0.3)'
9297
},
9398
{
9499
offset: 1,
95-
color: 'rgb(1, 191, 236)'
100+
color: 'rgba(138, 98, 235, 0)'
96101
}
97102
]),
98103
// shadowOffsetX: 0,
@@ -132,7 +137,7 @@ export function Auth0CumulativeSignups(params: {
132137
emphasis: {
133138
focus: 'series',
134139
lineStyle: {
135-
width: 10
140+
width: 20
136141
}
137142
},
138143
data: data?.map((item: any) => item.new_users) ?? []

0 commit comments

Comments
 (0)