File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ module.exports = {
21
21
'Click to enter Plot title' : 'Introducir el título de la Gráfica' , // plot_api/plot_api.js:579
22
22
'Click to enter X axis title' : 'Introducir el título del eje X' , // plots/plots.js:301
23
23
'Click to enter Y axis title' : 'Introducir el título del eje Y' , // plots/plots.js:302
24
+ 'Click to enter radial axis title' : 'Introducir el título del eje radial' ,
24
25
'Compare data on hover' : 'Comparar datos al pasar por encima' , // components/modebar/buttons.js:167
25
26
'Double-click on legend to isolate one trace' : 'Haga doble-clic en la leyenda para aislar una traza' , // components/legend/handle_click.js:90
26
27
'Double-click to zoom back out' : 'Haga doble-clic para restaurar la escala' , // plots/cartesian/dragbox.js:335
@@ -60,6 +61,7 @@ module.exports = {
60
61
'mean:' : 'media:' , // traces/box/calc.js:133
61
62
'median:' : 'mediana:' , // traces/box/calc.js:128
62
63
'min:' : 'mín:' , // traces/box/calc.js:129
64
+ 'new text' : 'nuevo texto' ,
63
65
'open:' : 'apertura:' , // traces/ohlc/transform.js:136
64
66
'outgoing flow count:' : 'flujo de salida:' , // traces/sankey/plot.js:143
65
67
'q1:' : 'q1:' , // traces/box/calc.js:130
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ selProto.style = function() {
32
32
33
33
if ( sel . size ( ) ) {
34
34
if ( typeof obj === 'string' ) {
35
- if ( arguments . length === 1 ) {
35
+ if ( arguments . length === 1 && ! d3 . event ) {
36
36
throw new Error ( 'd3 selection.style called as getter: ' +
37
- 'disallowed as it can fail for unattached elements. ' +
38
- 'Use node.style.attribute instead.' ) ;
37
+ 'disallowed outside event handlers as it can fail for ' +
38
+ 'unattached elements. Use node.style.attribute instead.' ) ;
39
39
}
40
40
checkStyleVal ( sel , obj , arguments [ 1 ] ) ;
41
41
} else {
You can’t perform that action at this time.
0 commit comments