samples.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. (function(global) {
  2. var Samples = global.Samples || (global.Samples = {});
  3. Samples.items = [{
  4. title: 'Charts',
  5. items: [{
  6. title: 'Bar',
  7. path: 'charts/bar.html'
  8. }, {
  9. title: 'Line',
  10. path: 'charts/line.html'
  11. }, {
  12. title: 'Doughnut',
  13. path: 'charts/doughnut.html'
  14. }, {
  15. title: 'Polar Area',
  16. path: 'charts/polar.html'
  17. }, {
  18. title: 'Radar',
  19. path: 'charts/radar.html'
  20. }, {
  21. title: 'Bubble',
  22. path: 'charts/bubble.html'
  23. }]
  24. }, {
  25. title: 'Scriptable',
  26. items: [{
  27. title: 'Interactions',
  28. path: 'scriptable/interactions.html'
  29. }, {
  30. title: 'Data',
  31. path: 'scriptable/data.html'
  32. }, {
  33. title: 'Dataset',
  34. path: 'scriptable/dataset.html'
  35. }, {
  36. title: 'Indices',
  37. path: 'scriptable/indices.html'
  38. }, {
  39. title: 'Mirror',
  40. path: 'scriptable/mirror.html'
  41. }]
  42. }, {
  43. title: 'Events',
  44. items: [{
  45. title: 'Listeners',
  46. path: 'events/listeners.html'
  47. }, {
  48. title: 'Highlight',
  49. path: 'events/highlight.html'
  50. }, {
  51. title: 'Selection',
  52. path: 'events/selection.html'
  53. }]
  54. }, {
  55. title: 'Formatting',
  56. items: [{
  57. title: 'Custom Labels',
  58. path: 'formatting/custom-labels.html'
  59. }]
  60. }];
  61. }(this));