Quiero pasar del gráfico de línea de tiempo que muestra datos a lo largo del tiempo al gráfico integral con D3.js.
Tengo esta matriz de datos y quiero el gráfico integral.
const array1 = [ {ts: 1632661247, value: 10}, {ts: 1632661248, value: 12}, {ts: 1632667255, value: 8}, {ts: 1632667315, value: 7} //... {ts: 1632667320, value: -3}, {ts: 1632667330, value: -10}, {ts: 1632667332, value: 14}, ]