From 136affc116f5bee5f61454142e07d4f88fbb5793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Tue, 18 Apr 2023 17:36:06 +0200 Subject: [PATCH] Change symbol size for line charts --- lib/js/src/compose/types/chart/chart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/js/src/compose/types/chart/chart.ts b/lib/js/src/compose/types/chart/chart.ts index 67739273a..454d672b4 100644 --- a/lib/js/src/compose/types/chart/chart.ts +++ b/lib/js/src/compose/types/chart/chart.ts @@ -242,7 +242,7 @@ export default class Chart extends BaseChart { opacity: fill ? 0.7 : 0, }, symbol, - symbolSize: 16, + symbolSize: type === 'scatter' ? 16 : 10, tooltip: { trigger: 'axis', formatter: tooltipFormatter,