| | |
| | | |
| | | state = { |
| | | dict: localStorage.getItem('lang') !== 'en-US' ? zhCN : enUS, // 字典 |
| | | config: true, // 图表配置信息 |
| | | config: null, // 图表配置信息 |
| | | empty: true, // 图表数据为空 |
| | | loading: false, // 数据加载状态 |
| | | chartId: Utils.getuuid(), // 图表Id |
| | |
| | | const { showHeader, config, loading, title, plot, empty, chartFields, selectFields } = this.state |
| | | |
| | | return ( |
| | | <div className="custom-line-chart-plot-box"> |
| | | <div className="custom-line-chart-plot-box" style={config.style}> |
| | | {loading ? |
| | | <div className="loading-mask"> |
| | | <div className="ant-spin-blur"></div> |