File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ const ChartVisualization = ({
121
121
const datasets = [ ] ;
122
122
let datasetIndex = 0 ;
123
123
124
- // Criar um dataset para cada coluna numérica (exceto a coluna de data )
124
+ // Create a dataset for each numeric column (except the date column )
125
125
for ( let colIndex = colStart ; colIndex <= colEnd ; colIndex ++ ) {
126
126
// Pular a coluna de data
127
127
if ( colIndex === dateColumnIndex ) {
@@ -206,7 +206,7 @@ const ChartVisualization = ({
206
206
const labels = [ ] ;
207
207
const dataPoints = [ ] ;
208
208
209
- // Se múltiplas colunas, criar datasets separados para cada coluna
209
+ // If multiple columns, create separate datasets for each column
210
210
if ( colEnd > colStart ) {
211
211
// FIX: Instead of calculating averages, show all values
212
212
const datasets = [ ] ;
Original file line number Diff line number Diff line change 9
9
10
10
.resizableContainer {
11
11
border-radius : 8px ;
12
- overflow : visible ; // Mudança: permitir que os handles sejam visíveis fora da borda
12
+ overflow : visible ; // Change: allow handles to be visible outside the border
13
13
14
14
:global (.react-resizable-handle ) {
15
15
position : absolute ;
You can’t perform that action at this time.
0 commit comments