Skip to main content

All Questions

1 vote
1 answer
287 views

D3.js Enter, Update, Exit issue

I have a relatively simple barchart. I want to .transition() between datasets with an .on("click") event. What I'm getting is a complete redraw of an additional chart appended to the DOM id, instead ...
Colin's user avatar
  • 940
0 votes
1 answer
89 views

Highcharts: update chart when data actualized

I am using Highcharts and I would like this chart to update each second. This is what I have now: JSFiddle I have timer window.setInterval(updateChart, 1000); and it works properly actualizing data ...
KaroCodes's user avatar
  • 256
4 votes
1 answer
10k views

D3: How can I change data in an existing bar chart

I have successfully build my initial bar chart. Now I want to add more bars to that existing chart using transitions to have a nice user experience. Here's my code: var data = [23, 85, 67, 38, 70]; /...
Hokascha's user avatar
  • 2,009