Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. var chart = new Highcharts.Chart({
  2. chart: {
  3. renderTo: 'container',
  4. animation: false
  5. },
  6. title: {
  7. text: 'Population ages 65 and over (% of total)',
  8. },
  9. credits: {
  10. position: {
  11. align: 'left',
  12. x: 20
  13. },
  14. text: 'Data from the World Bank'
  15. },
  16. xAxis: {
  17. categories: [
  18. '1980', '1981', '1982', '1983', '1984', '1985',
  19. '1986', '1987', '1988', '1989', '1990', '1991',
  20. '1992', '1993', '1994', '1995', '1996', '1997',
  21. '1998', '1999', '2000', '2001', '2002', '2003',
  22. '2004', '2005', '2006', '2007', '2008', '2009', '2010'
  23. ],
  24. labels: {
  25. step: 5
  26. }
  27. },
  28. yAxis: {
  29. title: {
  30. text: 'Percentage %',
  31. }
  32. },
  33. series: [{
  34. name: 'Algeria - 65 and over',
  35. data: [ 9, 9, 9, 10, 10, 10, 10, 11, 11, 12, 12, 12, 13, 13, 14, 14,
  36. 15, 15, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 23 ]
  37. }]
  38. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement