green
green

Reputation: 605

JavaScript - Bar Graph with custom animation fill

I need to draw a bar graph with custom animated fill which would be different for each bar.

I couldn't find any javascript library that facilitates this. I think I'd have to code it myself.

Can I do this using d3? Or is there any other library which can be modified easily?

Upvotes: 0

Views: 160

Answers (1)

zeenfaiz
zeenfaiz

Reputation: 151

Yes,you can create animated bar graph using D3.js with transition() feature.Refer this blog for example graph.

Upvotes: 1

Related Questions