- Amar Bajric (amarbajric)
- Michael Fuchs (deKilla)
- Timo Hasenbichler (timoooo)
#Preface
This project has been developed by three ambitious students, who are studying at the university "FH Joanneum" in Graz, Austria. The project is an open source library for visualizing JSON data as three dimensional Charts (e.g. Pie Charts or Bar Charts), which are not just perspective 3D, but are also interactive (e.g. you can zoom in/out or rotate), and therefore visualize a lot more data. It offers an intuitive configuration and is overall very comprehensible due to the structured and easy-to-use API.
Just include the anchart3d.js in your document. All other dependencies are bundled into that file and you're ready to go.
<script type="text/javascript" src="js/anchart3d.js"></script>
There is also an optional stylesheet file "anchart3d.css", that contains basic styling information to get things started easier. After that, you can (optionally) configure the chart and initialize it:
var configuration = {
"details": true,
"tooltip": true,
"showOnScreenControls": true,
"legend": true,
"startAnimation": true,
"antialias": true,
};
var pieChart = anchart3d.createChart("anchart3d")
.setConfig(configuration)
.pieChart()
.data(jsonData)
.draw();
createChart("anchart3d") points to a
Feel free to have a look at the project website to find out about all the possiblities and how to use them: