diff --git a/src/app/containers/Charts/pos/DailyAPY.tsx b/src/app/containers/Charts/pos/DailyAPY.tsx
index ed875b339..a8831e745 100644
--- a/src/app/containers/Charts/pos/DailyAPY.tsx
+++ b/src/app/containers/Charts/pos/DailyAPY.tsx
@@ -51,7 +51,7 @@ export function DailyAPY({ preview = false }: ChildProps) {
},
series: [
{
- type: 'line',
+ type: 'area',
name: `${t(translations.highcharts.pos.apy.seriesName)}`,
},
],
diff --git a/src/app/containers/Charts/pos/DailyParticipation.tsx b/src/app/containers/Charts/pos/DailyParticipation.tsx
index 1c4a52629..a2a921651 100644
--- a/src/app/containers/Charts/pos/DailyParticipation.tsx
+++ b/src/app/containers/Charts/pos/DailyParticipation.tsx
@@ -54,7 +54,7 @@ export function DailyParticipation({ preview = false }: ChildProps) {
},
series: [
{
- type: 'line',
+ type: 'area',
name: `${t(
translations.highcharts.pos.participation.seriesName,
)}`,
diff --git a/src/app/containers/Charts/pos/index.tsx b/src/app/containers/Charts/pos/index.tsx
index 44c09d578..7ed6423b2 100644
--- a/src/app/containers/Charts/pos/index.tsx
+++ b/src/app/containers/Charts/pos/index.tsx
@@ -48,14 +48,11 @@ export function Chart() {