samples.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. (function(global) {
  2. var Samples = global.Samples || (global.Samples = {});
  3. Samples.items = [{
  4. title: 'Bar charts',
  5. items: [{
  6. title: 'Vertical',
  7. path: 'charts/bar/vertical.html'
  8. }, {
  9. title: 'Horizontal',
  10. path: 'charts/bar/horizontal.html'
  11. }, {
  12. title: 'Multi axis',
  13. path: 'charts/bar/multi-axis.html'
  14. }, {
  15. title: 'Stacked',
  16. path: 'charts/bar/stacked.html'
  17. }, {
  18. title: 'Stacked groups',
  19. path: 'charts/bar/stacked-group.html'
  20. }]
  21. }, {
  22. title: 'Line charts',
  23. items: [{
  24. title: 'Basic',
  25. path: 'charts/line/basic.html'
  26. }, {
  27. title: 'Multi axis',
  28. path: 'charts/line/multi-axis.html'
  29. }, {
  30. title: 'Stepped',
  31. path: 'charts/line/stepped.html'
  32. }, {
  33. title: 'Interpolation',
  34. path: 'charts/line/interpolation-modes.html'
  35. }, {
  36. title: 'Line styles',
  37. path: 'charts/line/line-styles.html'
  38. }, {
  39. title: 'Point styles',
  40. path: 'charts/line/point-styles.html'
  41. }, {
  42. title: 'Point sizes',
  43. path: 'charts/line/point-sizes.html'
  44. }]
  45. }, {
  46. title: 'Area charts',
  47. items: [{
  48. title: 'Boundaries (line)',
  49. path: 'charts/area/line-boundaries.html'
  50. }, {
  51. title: 'Datasets (line)',
  52. path: 'charts/area/line-datasets.html'
  53. }, {
  54. title: 'Stacked (line)',
  55. path: 'charts/area/line-stacked.html'
  56. }, {
  57. title: 'Radar',
  58. path: 'charts/area/radar.html'
  59. }]
  60. }, {
  61. title: 'Other charts',
  62. items: [{
  63. title: 'Scatter',
  64. path: 'charts/scatter/basic.html'
  65. }, {
  66. title: 'Scatter - Multi axis',
  67. path: 'charts/scatter/multi-axis.html'
  68. }, {
  69. title: 'Doughnut',
  70. path: 'charts/doughnut.html'
  71. }, {
  72. title: 'Pie',
  73. path: 'charts/pie.html'
  74. }, {
  75. title: 'Polar area',
  76. path: 'charts/polar-area.html'
  77. }, {
  78. title: 'Radar',
  79. path: 'charts/radar.html'
  80. }, {
  81. title: 'Combo bar/line',
  82. path: 'charts/combo-bar-line.html'
  83. }]
  84. }, {
  85. title: 'Linear scale',
  86. items: [{
  87. title: 'Step size',
  88. path: 'scales/linear/step-size.html'
  89. }, {
  90. title: 'Min & max',
  91. path: 'scales/linear/min-max.html'
  92. }, {
  93. title: 'Min & max (suggested)',
  94. path: 'scales/linear/min-max-suggested.html'
  95. }]
  96. }, {
  97. title: 'Logarithmic scale',
  98. items: [{
  99. title: 'Line',
  100. path: 'scales/logarithmic/line.html'
  101. }, {
  102. title: 'Scatter',
  103. path: 'scales/logarithmic/scatter.html'
  104. }]
  105. }, {
  106. title: 'Time scale',
  107. items: [{
  108. title: 'Line',
  109. path: 'scales/time/line.html'
  110. }, {
  111. title: 'Line (point data)',
  112. path: 'scales/time/line-point-data.html'
  113. }, {
  114. title: 'Time Series',
  115. path: 'scales/time/financial.html'
  116. }, {
  117. title: 'Combo',
  118. path: 'scales/time/combo.html'
  119. }]
  120. }, {
  121. title: 'Scale options',
  122. items: [{
  123. title: 'Grid lines display',
  124. path: 'scales/gridlines-display.html'
  125. }, {
  126. title: 'Grid lines style',
  127. path: 'scales/gridlines-style.html'
  128. }, {
  129. title: 'Multiline labels',
  130. path: 'scales/multiline-labels.html'
  131. }, {
  132. title: 'Filtering Labels',
  133. path: 'scales/filtering-labels.html'
  134. }, {
  135. title: 'Non numeric Y Axis',
  136. path: 'scales/non-numeric-y.html'
  137. }, {
  138. title: 'Toggle Scale Type',
  139. path: 'scales/toggle-scale-type.html'
  140. }]
  141. }, {
  142. title: 'Legend',
  143. items: [{
  144. title: 'Positioning',
  145. path: 'legend/positioning.html'
  146. }, {
  147. title: 'Point style',
  148. path: 'legend/point-style.html'
  149. }]
  150. }, {
  151. title: 'Tooltip',
  152. items: [{
  153. title: 'Positioning',
  154. path: 'tooltips/positioning.html'
  155. }, {
  156. title: 'Interactions',
  157. path: 'tooltips/interactions.html'
  158. }, {
  159. title: 'Callbacks',
  160. path: 'tooltips/callbacks.html'
  161. }, {
  162. title: 'Border',
  163. path: 'tooltips/border.html'
  164. }, {
  165. title: 'HTML tooltips (line)',
  166. path: 'tooltips/custom-line.html'
  167. }, {
  168. title: 'HTML tooltips (pie)',
  169. path: 'tooltips/custom-pie.html'
  170. }, {
  171. title: 'HTML tooltips (points)',
  172. path: 'tooltips/custom-points.html'
  173. }]
  174. }, {
  175. title: 'Scriptable',
  176. items: [{
  177. title: 'Bubble Chart',
  178. path: 'scriptable/bubble.html'
  179. }]
  180. }, {
  181. title: 'Advanced',
  182. items: [{
  183. title: 'Progress bar',
  184. path: 'advanced/progress-bar.html'
  185. }, {
  186. title: 'Data labelling (plugin)',
  187. path: 'advanced/data-labelling.html'
  188. }]
  189. }];
  190. }(this));