Created
November 2, 2022 18:24
-
-
Save nfreear/b77afac3e7c9787a64297a3d50d288a1 to your computer and use it in GitHub Desktop.
Chart: W3C Specs - Number of translations | https://codepen.io/nfreear/pen/oNyxBjv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> <title> Chart </title> | |
<style> | |
#container { | |
height: 400px; | |
width: 100%; | |
} | |
.highcharts-point { | |
fill: teal; | |
stroke: gray; | |
stroke-width: 1px; | |
width: 28px; | |
} | |
</style> | |
<h1> Chart </h1> | |
<div id="container"></div> | |
<script src="https://code.highcharts.com/highcharts.js"></script> | |
<script> | |
const chart = Highcharts.chart( /* 'container', */ { | |
chart: { | |
renderTo: 'container', | |
type: 'bar' | |
}, | |
title: { | |
text: 'Number of translations' | |
}, | |
subtitle: { | |
text: 'Source: https://www.w3.org/Translations' | |
}, | |
xAxis: { | |
categories: [ 'WCAG 2.0', 'WCAG 2.1', 'HTML 4', 'ARIA 1.0', 'ARIA 1.1' ], | |
title: { | |
text: 'W3C Specifications' | |
} | |
}, | |
yAxis: { | |
title: { | |
text: 'Number of translations' | |
} | |
}, | |
series: [{ | |
name: 'W3C Specifications', // 'Jane', | |
data: [ 18, 11, 7, 2, 1 ] | |
} /* , { | |
name: 'John', | |
data: [5, 7, 3] | |
} */ ], | |
colors: [ 'gray' ] // [ 'teal' ] | |
}); | |
</script> | |
<pre> | |
NDF, 31-Oct-2022 | |
* https://www.highcharts.com/demo/bar-basic, | |
* https://stackoverflow.com/questions/20442147/how-to-convert-html-table-to-chart | |
</pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment