La función d3.utcWeek en D3.js se usa para devolver todas las semanas con la fecha y la hora en el intervalo dado de fecha de inicio y finalización en la hora universal coordinada (UTC).
Sintaxis:
d3.utcWeek.range(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 semanas.
Valor devuelto: esta función devuelve todas las semanas posibles en el rango dado.
Los siguientes programas ilustran la función d3.utcWeek en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> D3.js | d3.utcWeek 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, 02, 01); // Calling the utcWeek function // without step value var a = d3.utcWeek.range(start, end); // Getting the week values console.log(a); </script> </body> </html>
Producción:
["2015-02-01T00:00:00.000Z", "2015-02-08T00:00:00.000Z", "2015-02-15T00:00:00.000Z", "2015-02-22T00:00:00.000Z"]
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> D3.js | d3.utcWeek 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, 02, 01); // Calling the utcWeek function // with step value var a = d3.utcWeek.range(start, end, 2); // Getting the week values console.log(a); </script> </body> </html>
Producción:
["2015-02-01T00:00:00.000Z", "2015-02-15T00:00:00.000Z"]
Referencia: https://devdocs.io/d3~5/d3-time#timeWeek
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