Config.in 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. config BR2_PACKAGE_FLOT
  2. bool "flot"
  3. select BR2_PACKAGE_JQUERY
  4. help
  5. Flot is a pure Javascript plotting library for jQuery. It
  6. produces graphical plots of arbitrary datasets on-the-fly
  7. client-side.
  8. The focus is on simple usage (all settings are optional),
  9. attractive looks and interactive features like zooming and
  10. mouse tracking.
  11. The plugin works with Internet Explorer 6+, Firefox 2.x+,
  12. Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML
  13. canvas tag.
  14. http://www.flotcharts.org/
  15. if BR2_PACKAGE_FLOT
  16. comment "flot plugins"
  17. config BR2_PACKAGE_FLOT_CANVAS
  18. bool "canvas"
  19. help
  20. Flot plugin to render axis tick labels directly to the canvas
  21. config BR2_PACKAGE_FLOT_CATEGORIES
  22. bool "categories"
  23. help
  24. Flot plugin for plotting textual data or categories
  25. config BR2_PACKAGE_FLOT_CROSSHAIR
  26. bool "crosshair"
  27. help
  28. Flot plugin for showing crosshairs when the mouse hovers
  29. over the plot
  30. config BR2_PACKAGE_FLOT_ERRORBARS
  31. bool "errorbars"
  32. help
  33. Flot plugin for plotting error bars
  34. config BR2_PACKAGE_FLOT_FILLBETWEEN
  35. bool "fillbetween"
  36. help
  37. Flot plugin for computing bottoms for filled line and bar
  38. charts
  39. config BR2_PACKAGE_FLOT_IMAGE
  40. bool "image"
  41. help
  42. Flot plugin for plotting images
  43. config BR2_PACKAGE_FLOT_NAVIGATE
  44. bool "navigate"
  45. help
  46. Flot plugin for adding panning and zooming capabilities to a
  47. plot
  48. config BR2_PACKAGE_FLOT_PIE
  49. bool "pie"
  50. help
  51. Flot plugin for rendering pie charts
  52. config BR2_PACKAGE_FLOT_RESIZE
  53. bool "resize"
  54. help
  55. Flot plugin for automatically redrawing plots when the
  56. placeholder size changes.
  57. config BR2_PACKAGE_FLOT_SELECTION
  58. bool "selection"
  59. help
  60. Flot plugin for selecting regions
  61. config BR2_PACKAGE_FLOT_STACK
  62. bool "stack"
  63. help
  64. Flot plugin for stacking data sets
  65. config BR2_PACKAGE_FLOT_SYMBOL
  66. bool "symbol"
  67. help
  68. Flot plugin that adds some extra symbols for plotting points
  69. config BR2_PACKAGE_FLOT_THRESHOLD
  70. bool "threshold"
  71. help
  72. Flot plugin for thresholding data
  73. config BR2_PACKAGE_FLOT_TIME
  74. bool "time"
  75. help
  76. Flot plugin for handling time axes
  77. endif