Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I tried,D3 object loading in qlik sense it was hanging and closes qlik sense desktop application,I tried so many ways I figured out below code it's looping stops at some point of data loading.
Thanks.
nest.forEach(function(dataset) { dataset.values = dataset.values.map(function(d,i) { return { "key":d.dim(2).qText, "dx":d.dim(1).qText, "dy":d.dim(5).qNum, "dt":d.dim(3).qText, "dt1":d.dim(4).qText, "dim2":d.dim(2).qText, } }); });nest.forEach(function(dataset, i) { // //Individual points series.selectAll(".point.dataset-" + i) .data(dataset.values).enter().append("path") .attr("class", "point dataset-" + i) .attr("fill", function(d) { }) .style("stroke", function(d) { }) .attr("d", symbol(dataset,i)) .attr("transform", function(d) { return "translate(" + x(d.dx) + "," + y(d.dy) + ")"; }) .on("click", function(d) { }) .append("title").text(function(d) { }) });```
hello,
there is not solution for this.. but you can get data in some amount.
for example 1000 data in one array
second 1000 data into second array
array=[
[1000],
[1000]
];
like this 🙂 try out..
Thanks Regards,
Harsh Gohil