king
2020-05-06 4e1938344ca46c0cbe699756ecaffa630e698aec
src/templates/sharecomponent/chartcomponent/index.jsx
@@ -443,8 +443,14 @@
    return (
      <div className="line-chart-edit-box" style={{minHeight: plot.height ? plot.height + 50 : 450}}>
        <p className="chart-title">{plot.title}</p>
        <ChartDrawerForm type={plot.chartType} columns={this.props.config.columns} dict={this.state.dict} plot={plot} plotchange={this.plotChange} />
        <div className="canvas" id={plot.uuid}></div>
        <ChartDrawerForm
          plot={plot}
          type={plot.chartType}
          config={this.props.config}
          dict={this.state.dict}
          plotchange={this.plotChange}
        />
      </div>
    )
  }