Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. $(function () {
  2. $('#container').highcharts({
  3. chart: {
  4. type: 'column',
  5. zoomType: 'x',
  6. },
  7. xAxis: {
  8. type: 'linear',
  9. labels: {
  10. rotation: -45,
  11. align: 'right'
  12. },
  13. },
  14. series: [{
  15. name: "Histogram",
  16. data: dataHistogram,
  17. }],
  18. title: { text: 'Histogram' },
  19. subtitle: { text: ' To ' },
  20. yAxis: [{//Primary axis
  21. title: { text: 'Values' },
  22.  
  23. },]
  24. })
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement