diff --git a/app/client/src/components/propertyControls/ChartDataControl.tsx b/app/client/src/components/propertyControls/ChartDataControl.tsx index 3a23c9fa5d..7e6cb01137 100644 --- a/app/client/src/components/propertyControls/ChartDataControl.tsx +++ b/app/client/src/components/propertyControls/ChartDataControl.tsx @@ -282,7 +282,7 @@ class ChartDataControl extends BaseControl { seriesName: string; data: string; }> = this.props.propertyValue; - chartData.push({ seriesName: "", data: '[{ x: "", y: "" }]' }); + chartData.push({ seriesName: "", data: '[{ "x": "label", "y": 50 }]' }); this.updateProperty(this.props.propertyName, chartData); };