AnyChart Data Visualization Framework
AnyChart is a flexible JavaScript (HTML5, SVG, VML) charting framework that fits any solution in need of data visualization.
Table of Contents
Download and install
There are several ways to download/install AnyChart.
Direct download
All binaries are located in dist folder.
CDN
If you don't want to download and host AnyChart yourself, you can include it from the AnyChart CDN (Content Delivery Network): https://cdn.anychart.com/
<head>
<script src="https://cdn.anychart.com/js/latest/anychart.min.js"></script>
</head>
Package managers
You can install AnyChart using npm, bower or yarn:
npm install anychart
bower install anychart
yarn add anychart
Getting started
The fastest way to start with AnyChart is to include framework into a webpage and write some code. Look at this simple HTML snippet below:
<!doctype html>
<body>
<div id="container" style="width: 500px; height: 400px;"></div>
<script src="https://cdn.anychart.com/js/latest/anychart.min.js" type="text/javascript"></script>
<script>
anychart.onDocumentReady(function() {
var chart = anychart.pie([
["Chocolate", 5],
["Rhubarb compote", 2],
["Crêpe Suzette", 2],
["American blueberry", 2],
["Buttermilk", 1]
]);
chart.title("Top 5 pancake fillings");
chart.container("container");
chart.draw();
});
</script>
</body>
</html>
Step by step quick start guides
Contacts
Links
License
© AnyChart.com - JavaScript charts. All rights reserved.