La función d3.utcMonths() en D3.js se usa para devolver todos los meses con fecha en el rango dado de fecha de inicio y finalización en el tiempo universal coordinado (UTC).
Sintaxis:
d3.utcMonths(start, end, step);
Parámetros: esta función acepta tres parámetros que se detallan a continuación:
- Inicio: este parámetro contiene la fecha de inicio dada.
- fin: este parámetro contiene la fecha de finalización dada.
- paso: es un parámetro opcional que contiene el valor utilizado para omitir los meses.
Valor devuelto: esta función devuelve todos los meses posibles en el rango dado.
Los siguientes programas ilustran la función d3.utcMonths() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> D3.js | d3.utcMonths() Function </title> <script src = "https://d3js.org/d3.v4.min.js"> </script> </head> <body> <script> // Initialising start and end date var start = new Date(2015, 01, 01); var end = new Date(2015, 05, 01); // Calling the utcMonths() function // without step value var a = d3.utcMonths(start, end); // Getting the months values console.log(a); </script> </body> </html>
Producción:
["2015-02-01T00:00:00.000Z", "2015-03-01T00:00:00.000Z", "2015-04-01T00:00:00.000Z", "2015-05-01T00:00:00.000Z"]
Ejemplo 2:
<!DOCTYPE html> <html> <head> <script src = "https://d3js.org/d3.v4.min.js"> </script> <title> D3.js | d3.utcMonths() Function </title> </head> <body> <script> // Initialising start and end date var start = new Date(2015, 01, 01); var end = new Date(2015, 05, 01); // Calling the utcMonths() function // with step value var a = d3.utcMonths(start, end, 2); // Getting the months values console.log(a); </script> </body> </html>
Producción:
["2015-02-01T00:00:00.000Z", "2015-04-01T00:00:00.000Z"]
Referencia: https://devdocs.io/d3~5/d3-time#timeMonths
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA