Reputation: 127
I use Google Charts
to visualize a match data, but I want to use D3.JS
from now on because of its large community and rich graphic tools. I had written a code for Google Chart, which pulls data from database, parses it with JSON format, and visualizes via a basic bar chart. I want to change my basic bar chart to a stacked bar chart.
Here is my script.
I looked around to find a solution, but I couldn't find exactly what I needed.
How can I switch it to D3.JS
?
Upvotes: 2
Views: 4852
Reputation: 1344
vida.io is another option for reusable d3js templates. You can do live edit of javascript and stylesheet. In addition, vida.io offers GUI editor for basic properties, data upload for you to upload csv files.
Check out demo section for more examples:
Disclaimer: my team runs vida.io.
Upvotes: 1
Reputation: 3
This project is an attempt to build re-usable charts and chart components for d3.js without taking away the power that d3.js gives you. This is a very young collection of components, with the goal of keeping these components very customizeable, staying away from your standard cookie cutter solutions.
Try this, it might be what you're looking for: http://nvd3.org/ghpages/multiBarHorizontal.html
Let us know if it does the job.
Upvotes: 1