@@ -149,75 +149,73 @@ function LineChart(props: LineChartProps) {
149
149
return (
150
150
< div className = { styles . wrapper } >
151
151
{ title && < div className = { styles . title } > { title } </ div > }
152
- < div className = { styles . chartWrapper } >
153
- < ResponsiveContainer width = "100%" height = "100%" >
154
- < RechartsLineChart width = { 500 } height = { 230 } data = { data } margin = { { top : 12 } } >
155
- < CartesianGrid stroke = "#E9F3FF" vertical = { false } />
156
- < XAxis
157
- dataKey = { xAxisDataKey }
158
- domain = { [ 'auto' , 'auto' ] }
159
- padding = { { left : xAxisSidePadding , right : xAxisSidePadding } }
160
- axisLine = { false }
161
- tick = { { ...axisLabelStyles , transform : 'translate(0, 8)' } }
162
- tickSize = { 3 }
163
- tickMargin = { 6 }
164
- tickLine = { { transform : 'translate(0, 8)' } }
165
- ticks = { ticks }
166
- { ...( isTimeScaleProps ( props )
167
- ? {
168
- type : 'number' ,
169
- scale : 'time' ,
170
- tickFormatter : ( time ) => getLocalShortDate ( time , props . language , t ) ,
171
- }
172
- : { } ) }
152
+ < ResponsiveContainer width = "100%" height = { showLegend ? 280 : 230 } >
153
+ < RechartsLineChart data = { data } margin = { { top : 12 } } >
154
+ < CartesianGrid stroke = "#E9F3FF" vertical = { false } />
155
+ < XAxis
156
+ dataKey = { xAxisDataKey }
157
+ domain = { [ 'auto' , 'auto' ] }
158
+ padding = { { left : xAxisSidePadding , right : xAxisSidePadding } }
159
+ axisLine = { false }
160
+ tick = { { ...axisLabelStyles , transform : 'translate(0, 8)' } }
161
+ tickSize = { 3 }
162
+ tickMargin = { 6 }
163
+ tickLine = { { transform : 'translate(0, 8)' } }
164
+ ticks = { ticks }
165
+ { ...( isTimeScaleProps ( props )
166
+ ? {
167
+ type : 'number' ,
168
+ scale : 'time' ,
169
+ tickFormatter : ( time ) => getLocalShortDate ( time , props . language , t ) ,
170
+ }
171
+ : { } ) }
172
+ />
173
+ < YAxis
174
+ yAxisId = "left"
175
+ tickLine = { false }
176
+ tick = { axisLabelStyles }
177
+ axisLine = { false }
178
+ // Default width is 60, which causes a gap
179
+ // https://github.com/recharts/recharts/issues/2027
180
+ width = { 40 }
181
+ />
182
+ { showLegend && (
183
+ < Legend
184
+ iconType = "circle"
185
+ onClick = { onLegendClick }
186
+ wrapperStyle = { {
187
+ paddingTop : 16 ,
188
+ paddingBottom : 16 ,
189
+ fontSize : 12 ,
190
+ fontWeight : 600 ,
191
+ } }
173
192
/>
174
- < YAxis
175
- yAxisId = "left"
176
- tickLine = { false }
177
- tick = { axisLabelStyles }
178
- axisLine = { false }
179
- // Default width is 60, which causes a gap
180
- // https://github.com/recharts/recharts/issues/2027
181
- width = { 40 }
182
- />
183
- { showLegend && (
184
- < Legend
185
- iconType = "circle"
186
- onClick = { onLegendClick }
187
- wrapperStyle = { {
188
- paddingTop : 16 ,
189
- paddingBottom : 16 ,
190
- fontSize : 12 ,
191
- fontWeight : 600 ,
193
+ ) }
194
+ < Tooltip content = { CustomTooltip } cursor = { false } />
195
+ { lineConfig . map ( ( { id, color } ) => {
196
+ return (
197
+ < Line
198
+ key = { id }
199
+ yAxisId = "left"
200
+ type = "linear"
201
+ dataKey = { id }
202
+ stroke = { color }
203
+ strokeWidth = { 3 }
204
+ hide = { hiddenLines . includes ( id ) }
205
+ dot = { data . length > 12 ? false : { r : 4 } }
206
+ activeDot = { {
207
+ r : 6 ,
208
+ fill : activeLine === id ? color : 'transparent' ,
209
+ stroke : activeLine === id ? color : 'transparent' ,
210
+ // https://github.com/recharts/recharts/issues/2678
211
+ onMouseOver : ( ) => onLineMouseOver ( id ) ,
212
+ onMouseLeave : onLineMouseLeave ,
192
213
} }
193
214
/>
194
- ) }
195
- < Tooltip content = { CustomTooltip } cursor = { false } />
196
- { lineConfig . map ( ( { id, color } ) => {
197
- return (
198
- < Line
199
- key = { id }
200
- yAxisId = "left"
201
- type = "linear"
202
- dataKey = { id }
203
- stroke = { color }
204
- strokeWidth = { 3 }
205
- hide = { hiddenLines . includes ( id ) }
206
- dot = { data . length > 12 ? false : { r : 4 } }
207
- activeDot = { {
208
- r : 6 ,
209
- fill : activeLine === id ? color : 'transparent' ,
210
- stroke : activeLine === id ? color : 'transparent' ,
211
- // https://github.com/recharts/recharts/issues/2678
212
- onMouseOver : ( ) => onLineMouseOver ( id ) ,
213
- onMouseLeave : onLineMouseLeave ,
214
- } }
215
- />
216
- ) ;
217
- } ) }
218
- </ RechartsLineChart >
219
- </ ResponsiveContainer >
220
- </ div >
215
+ ) ;
216
+ } ) }
217
+ </ RechartsLineChart >
218
+ </ ResponsiveContainer >
221
219
</ div >
222
220
) ;
223
221
}
0 commit comments