samples.yml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. simple_multiple:
  2. title: 'Line Chart'
  3. desc: 'Line chart with sequential data.'
  4. timeseries:
  5. title: Timeseries Chart
  6. desc: Simple line chart with timeseries data.
  7. chart_spline:
  8. title: Spline Chart
  9. desc: Display as Spline Chart.
  10. simple_xy:
  11. title: Simple XY Line Chart
  12. desc: Simple line chart with custom x.
  13. simple_xy_multiple:
  14. title: Multiple XY Line Chart
  15. desc: Multiple line chart with multiple custom x.
  16. simple_regions:
  17. title: Line Chart with Regions
  18. desc: Set regions for each data with style.
  19. chart_bar:
  20. title: Bar Chart
  21. desc: Display as Bar Chart.
  22. chart_bar_stacked:
  23. title: Stacked Bar Chart
  24. desc: Display as Stacked Bar Chart.
  25. chart_scatter:
  26. title: Scatter Plot
  27. desc: Display as Scatter Plot.
  28. chart_pie:
  29. title: Pie Chart
  30. desc: Display as Pie Chart.
  31. chart_donut:
  32. title: Donut Chart
  33. desc: Display as Donut Chart.
  34. chart_gauge:
  35. title: Gauge Chart
  36. desc: Display as Gauge Chart.
  37. chart_step:
  38. title: Step Chart
  39. desc: Display as Step Chart.
  40. chart_area:
  41. title: Area Chart
  42. desc: Display as Area Chart.
  43. chart_area_stacked:
  44. title: Stacked Area Chart
  45. desc: Display as Stacked Area Chart.
  46. chart_stanford:
  47. title: Stanford Chart
  48. desc: Display as Stanford Chart.
  49. chart_combination:
  50. title: Combination Chart
  51. desc: Display all kinda charts up in here.
  52. categorized:
  53. title: Category Axis
  54. desc: Show ticks as categorized by each data.
  55. axes_y2:
  56. title: Additional Y Axis
  57. desc: Additional y axis can be added.
  58. axes_rotated:
  59. title: Rotated Axis
  60. desc: Switch x and y axis position.
  61. axes_x_localtime:
  62. title: X Axis Timezone
  63. desc: Convert time to UTC.
  64. axes_x_tick_rotate:
  65. title: Rotate X Axis Tick Text
  66. desc: Rotate x axis tick text.
  67. axes_x_tick_format:
  68. title: X Axis Tick Format
  69. desc: Format x axis tick text.
  70. axes_y_tick_format:
  71. title: Y Axis Tick Format
  72. desc: Format y axis tick text.
  73. axes_x_tick_culling:
  74. title: X Axis Tick Culling
  75. desc: Set cull ticks or not on X Axis.
  76. axes_x_tick_values:
  77. title: X Axis Tick Values
  78. desc: Set tick texts on X Axis.
  79. axes_x_tick_count:
  80. title: X Axis Tick Count
  81. desc: Set the number of ticks on X Axis.
  82. axes_x_tick_fit:
  83. title: X Axis Tick Fitting
  84. desc: Set ticks position to x of data.
  85. axes_label:
  86. title: Axis Label
  87. desc: Set label for axis.
  88. axes_label_position:
  89. title: Axis Label Position
  90. desc: Set axis label position.
  91. axes_y_padding:
  92. title: Padding for Y Axis
  93. desc: Set padding for y axis.
  94. axes_y_range:
  95. title: Range for Y Axis
  96. desc: Set range for y axis.
  97. data_columned:
  98. title: Column Oriented Data
  99. desc: Column-oriented data can be used as input.
  100. data_rowed:
  101. title: Row Oriented Data
  102. desc: Row-oriented data can be used as input.
  103. data_json:
  104. title: JSON Data
  105. desc: JSON can be used as input.
  106. data_url:
  107. title: Data from URL
  108. desc: Data from URL can be used as input.
  109. data_load:
  110. title: Load Data
  111. desc: Load data dynamically.
  112. data_name:
  113. title: Data Name
  114. desc: Set name for each data.
  115. data_stringx:
  116. title: Category Data
  117. desc: Load data with x values on category axis.
  118. data_order:
  119. title: Data Order
  120. desc: Define data order. This will be used for stacked bar chart.
  121. data_label:
  122. title: Data Label
  123. desc: Show label of data.
  124. data_label_format:
  125. title: Data Label Format
  126. desc: Format label of data.
  127. data_number_format_l10n:
  128. title: Number Format Localization
  129. desc: Number format localization using D3 locale settings.
  130. data_color:
  131. title: Data Color
  132. desc: Set color according to data.
  133. options_legend:
  134. title: Hide Legend
  135. desc: Set visibility of legend.
  136. legend_position:
  137. title: Legend Position
  138. desc: Show legend on bottom or right side.
  139. legend_custom:
  140. title: Custom Legend
  141. desc: Build custom legend
  142. tooltip_show:
  143. title: Hide Tooltip
  144. desc: Set visibility of tooltip.
  145. tooltip_grouped:
  146. title: Tooltip Grouping
  147. desc: Show tooltips as grouped or not.
  148. tooltip_format:
  149. title: Tooltip Format
  150. desc: Set format for title and value on tooltip.
  151. tooltip_horizontal:
  152. title: Horizontal Tooltip
  153. desc: Show tooltips based on the horizontal position of the mouse.
  154. options_gridline:
  155. title: Grid Lines
  156. desc: Show grid lines for x and y axis.
  157. grid_x_lines:
  158. title: Optional X Grid Lines
  159. desc: Add optional grid lines on x grid.
  160. grid_y_lines:
  161. title: Optional Y Grid Lines
  162. desc: Add optional grid lines on y grid.
  163. options_subchart:
  164. title: Sub Chart
  165. desc: Show sub chart for zoom and selection range.
  166. interaction_zoom:
  167. title: Zoom
  168. desc: Zoom by mouse wheel event and slide by drag.
  169. interaction_zoom_by_drag:
  170. title: Zoom by Drag
  171. desc: Zoom by dragging area.
  172. region:
  173. title: Region
  174. desc: Show rects on chart.
  175. region_timeseries:
  176. title: Region with Timeseries
  177. desc: Show rects on timeseries chart.
  178. options_size:
  179. title: Chart Size
  180. desc: Set chart size in px.
  181. options_color:
  182. title: Color Pattern
  183. desc: Set custom color pattern.
  184. options_padding:
  185. title: Padding
  186. desc: Change padding for the chart.
  187. point_show:
  188. title: Hide points
  189. desc: Hide points on line chart
  190. pie_label_format:
  191. title: Pie Label Format
  192. desc: Change label format on Pie chart
  193. transition_duration:
  194. title: Duration of Transition
  195. desc: Set duration of transition for chart animation.
  196. api_flow:
  197. title: Flow
  198. desc: Load/Unload data as flowing
  199. api_resize:
  200. title: Resize
  201. desc: Resize chart.
  202. api_data_name:
  203. title: Data Name
  204. desc: Update data names.
  205. api_data_color:
  206. title: Data Color
  207. desc: Update data colors.
  208. api_axis_label:
  209. title: Axis Label
  210. desc: Update axis labels.
  211. api_axis_range:
  212. title: Axis Range
  213. desc: Update axis range.
  214. api_grid_x:
  215. title: X Grid
  216. desc: Update custom x grids.
  217. transform_line:
  218. title: To Line Chart
  219. desc: Transform to line chart.
  220. transform_spline:
  221. title: To Spline Chart
  222. desc: Transform to spline chart.
  223. transform_bar:
  224. title: To Bar Chart
  225. desc: Transform to bar chart.
  226. transform_area:
  227. title: To Area Chart
  228. desc: Transform to area chart.
  229. transform_areaspline:
  230. title: To Area Spline Chart
  231. desc: Transform to area spline chart.
  232. transform_scatter:
  233. title: To Scatter Plot
  234. desc: Transform to scatter plot.
  235. transform_pie:
  236. title: To Pie Chart
  237. desc: Transform to pie chart.
  238. transform_donut:
  239. title: To Donut Chart
  240. desc: Transform to donut chart.
  241. style_region:
  242. title: Style for Region
  243. desc: Set style for regions.
  244. style_grid:
  245. title: Style for Grid
  246. desc: Set style for grids.