Skip to content

Commit f976dc7

Browse files
author
weinStag
committed
better chart spawn params
1 parent 581794d commit f976dc7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/dashboard/Data/Browser/DataBrowser.react.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -727,15 +727,15 @@ export default class DataBrowser extends React.Component {
727727
)}
728728
{this.state.isChartPanelVisible && this.state.selectedData.length > 1 && (
729729
<DraggableResizablePanel
730-
width={this.state.chartPanelWidth}
731-
height={500}
730+
width={650}
731+
height={550}
732732
minWidth={400}
733-
maxWidth={900}
733+
maxWidth={1100}
734734
minHeight={300}
735-
maxHeight={700}
735+
maxHeight={800}
736736
title="Data Visualization"
737737
onClose={() => this.setState({ isChartPanelVisible: false })}
738-
initialPosition={{ x: 200, y: 150 }}
738+
initialPosition={{ x: 320, y: 320 }}
739739
>
740740
<ChartVisualization
741741
selectedData={this.state.selectedData}

0 commit comments

Comments
 (0)