From be77b6f35ca650141d26c2b9866c2f8b003e78ec Mon Sep 17 00:00:00 2001 From: kushal-gopal <59653208+kushal-gopal@users.noreply.github.com> Date: Mon, 10 Oct 2022 08:09:40 +0530 Subject: [PATCH] Fixed bug - default marker color value for the chart widget is added (#4306) --- frontend/src/Editor/WidgetManager/widgetConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/WidgetManager/widgetConfig.js b/frontend/src/Editor/WidgetManager/widgetConfig.js index 1e297d2949..1573a68eca 100644 --- a/frontend/src/Editor/WidgetManager/widgetConfig.js +++ b/frontend/src/Editor/WidgetManager/widgetConfig.js @@ -642,7 +642,7 @@ export const widgets = [ }, properties: { title: { value: 'This title can be changed' }, - markerColor: { value: '' }, + markerColor: { value: '#CDE1F8' }, showAxes: { value: '{{true}}' }, showGridLines: { value: '{{true}}' }, plotFromJson: { value: '{{false}}' },