Config.in 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. https://code.google.com/p/flot/
  15. if BR2_PACKAGE_FLOT
  16. comment "flot plugins"
  17. config BR2_PACKAGE_FLOT_NAVIGATE
  18. bool "navigate"
  19. help
  20. Flot plugin for adding panning and zooming capabilities to a plot
  21. config BR2_PACKAGE_FLOT_PIE
  22. bool "pie"
  23. help
  24. Flot plugin for rendering pie charts
  25. config BR2_PACKAGE_FLOT_RESIZE
  26. bool "resize"
  27. help
  28. Flot plugin for automatically redrawing plots when the
  29. placeholder size changes.
  30. config BR2_PACKAGE_FLOT_SELECTION
  31. bool "selection"
  32. help
  33. Flot plugin for selecting regions
  34. config BR2_PACKAGE_FLOT_STACK
  35. bool "stack"
  36. help
  37. Flot plugin for stacking data sets
  38. config BR2_PACKAGE_FLOT_SYMBOL
  39. bool "symbol"
  40. help
  41. Flot plugin that adds some extra symbols for plotting points
  42. config BR2_PACKAGE_FLOT_THRESHOLD
  43. bool "threshold"
  44. help
  45. Flot plugin for thresholding data
  46. endif