La función d3.axis.scale() en D3.js se usa para establecer la escala y devolver el eje. Si esta función no se proporciona con una escala específica, devuelve la escala actual.
Sintaxis:
axis.scale([scale])
Parámetros: Esta función acepta solo un único parámetro como se mencionó anteriormente y se describe a continuación:
- escala: Este parámetro es un parámetro opcional y contiene la escala utilizada.
Valor devuelto: esta función devuelve el eje.
Los siguientes programas ilustran la función d3.axis.scale() en D3.js:
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <head> <title> D3.js | d3.axisBottom() Function </title> <script type="text/javascript" src="https://d3js.org/d3.v4.min.js"> </script> <style> svg text { fill: green; font: 15px sans-serif; text-anchor: center; } </style> </head> <body> <script> var width = 400, height = 400; var svg = d3.select("body") .append("svg") .attr("width", width) .attr("height", height); var xscale = d3.scaleLinear() .domain([0, 10]) .range([0, width - 60]); var x_axis = d3.axisBottom().scale(xscale); var xAxisTranslate = height / 2; svg.append("g") .attr("transform", "translate(50, " + xAxisTranslate + ")") .call(x_axis) </script> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <head> <title> D3.js | d3.axisRight() Function </title> <script type="text/javascript" src="https://d3js.org/d3.v4.min.js"> </script> <style> svg text { fill: green; font: 15px sans-serif; text-anchor: start; } </style> </head> <body> <script> var width = 400, height = 400; var svg = d3.select("body") .append("svg") .attr("width", width) .attr("height", height); var yscale = d3.scaleLinear() .domain([0, 10]) .range([height - 50, 0]); var y_axis = d3.axisRight().scale(yscale); svg.append("g") .attr("transform", "translate(100,20)") .call(y_axis) </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA