Highcharts is a charting library written in pure JavaScript.
Highcharts can easily and conveniently add interactive charts to web sites or web applications.
Highcharts is free for personal study, personal websites and non-commercial use.
Highcharts Bar Chart syntax
HighCharts Features
Compatibility - Supports all major browsers and mobile platforms (android, iOS, etc.).
Multiple devices - Supports multiple devices, such as handheld devices iPhone/iPad, tablets, etc.
Free to use - Open source and free.
Lightweight - highcharts.js core library size is only about 35KB.
Simple configuration - use json format to configure
Dynamic - can be modified after the chart is generated.
Multidimensional - Supports multidimensional charts
Configuration prompt tool - There will be prompt information when the mouse moves to a certain point in the chart.
Timeline - accurate to milliseconds.
Export - Tables can be exported to PDF/ PNG/ JPG / SVG format
Output - Web page output charts.
Zoomable - Select the chart part to enlarge and observe the chart up close;
External data - Load dynamic data from the server.
Text Rotation - Supports label rotation in any direction.
Highcharts Bar Chart example
<html> <head> <meta charset="UTF-8" /> <title>Highcharts 教程 | php.cn</title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://code.highcharts.com/highcharts.js"></script> </head> <body> <div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div> <script language="JavaScript"> $(document).ready(function() { var chart = { type: 'bar' }; var title = { text: 'Historic World Population by Region' }; var subtitle = { text: 'Source: Wikipedia.org' }; var xAxis = { categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'], title: { text: null } }; var yAxis = { min: 0, title: { text: 'Population (millions)', align: 'high' }, labels: { overflow: 'justify' } }; var tooltip = { valueSuffix: ' millions' }; var plotOptions = { bar: { dataLabels: { enabled: true } } }; var legend = { layout: 'vertical', align: 'right', verticalAlign: 'top', x: -40, y: 100, floating: true, borderWidth: 1, backgroundColor: ((Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'), shadow: true }; var credits = { enabled: false }; var series= [{ name: 'Year 1800', data: [107, 31, 635, 203, 2] }, { name: 'Year 1900', data: [133, 156, 947, 408, 6] }, { name: 'Year 2008', data: [973, 914, 4054, 732, 34] } ]; var json = {}; json.chart = chart; json.title = title; json.subtitle = subtitle; json.tooltip = tooltip; json.xAxis = xAxis; json.yAxis = yAxis; json.series = series; json.plotOptions = plotOptions; json.legend = legend; json.credits = credits; $('#container').highcharts(json); }); </script> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance