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 = {
2121 'Click to enter Plot title' : 'Introducir el título de la Gráfica' , // plot_api/plot_api.js:579
2222 'Click to enter X axis title' : 'Introducir el título del eje X' , // plots/plots.js:301
2323 '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' ,
2425 'Compare data on hover' : 'Comparar datos al pasar por encima' , // components/modebar/buttons.js:167
2526 'Double-click on legend to isolate one trace' : 'Haga doble-clic en la leyenda para aislar una traza' , // components/legend/handle_click.js:90
2627 'Double-click to zoom back out' : 'Haga doble-clic para restaurar la escala' , // plots/cartesian/dragbox.js:335
@@ -60,6 +61,7 @@ module.exports = {
6061 'mean:' : 'media:' , // traces/box/calc.js:133
6162 'median:' : 'mediana:' , // traces/box/calc.js:128
6263 'min:' : 'mín:' , // traces/box/calc.js:129
64+ 'new text' : 'nuevo texto' ,
6365 'open:' : 'apertura:' , // traces/ohlc/transform.js:136
6466 'outgoing flow count:' : 'flujo de salida:' , // traces/sankey/plot.js:143
6567 'q1:' : 'q1:' , // traces/box/calc.js:130
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ selProto.style = function() {
3232
3333 if ( sel . size ( ) ) {
3434 if ( typeof obj === 'string' ) {
35- if ( arguments . length === 1 ) {
35+ if ( arguments . length === 1 && ! d3 . event ) {
3636 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.' ) ;
3939 }
4040 checkStyleVal ( sel , obj , arguments [ 1 ] ) ;
4141 } else {
You can’t perform that action at this time.
0 commit comments