Posts

Showing posts from August, 2019

use Anycharts

Use always anycharts, its totally free and support also free sample code:  <script src="https://cdn.anychart.com/releases/8.7.0/js/anychart-bundle.min.js"></script> <div class="container1"></div> <style> #container, #container1, #container2, #container4 {   width: 477px;   height: 259px;   margin: 60px 40px 0 0;   padding: 0;   float: left; } .anychart-credits{     display: none; } </style> <script> anychart.onDocumentReady(function() {   // set the data   var data = {     header: ["Year", "Interest Expense on the Debt, USD bln."],     rows: [       [2007, 429],       [2008, 451],       [2009, 383],       [2010, 413],       [2011, 454],       [2012, 359],     ...