xref: /OK3568_Linux_fs/buildroot/package/flot/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
9	  The focus is on simple usage (all settings are optional),
10	  attractive looks and interactive features like zooming and
11	  mouse tracking.
12
13	  The plugin works with Internet Explorer 6+, Firefox 2.x+,
14	  Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML
15	  canvas tag.
16
17	  http://www.flotcharts.org/
18
19if BR2_PACKAGE_FLOT
20
21comment "flot plugins"
22
23config BR2_PACKAGE_FLOT_CANVAS
24	bool "canvas"
25	help
26	  Flot plugin to render axis tick labels directly to the canvas
27
28config BR2_PACKAGE_FLOT_CATEGORIES
29	bool "categories"
30	help
31	  Flot plugin for plotting textual data or categories
32
33config BR2_PACKAGE_FLOT_CROSSHAIR
34	bool "crosshair"
35	help
36	  Flot plugin for showing crosshairs when the mouse hovers
37	  over the plot
38
39config BR2_PACKAGE_FLOT_ERRORBARS
40	bool "errorbars"
41	help
42	  Flot plugin for plotting error bars
43
44config BR2_PACKAGE_FLOT_FILLBETWEEN
45	bool "fillbetween"
46	help
47	  Flot plugin for computing bottoms for filled line and bar
48	  charts
49
50config BR2_PACKAGE_FLOT_IMAGE
51	bool "image"
52	help
53	  Flot plugin for plotting images
54
55config BR2_PACKAGE_FLOT_NAVIGATE
56	bool "navigate"
57	help
58	  Flot plugin for adding panning and zooming capabilities to a
59	  plot
60
61config BR2_PACKAGE_FLOT_PIE
62	bool "pie"
63	help
64	  Flot plugin for rendering pie charts
65
66config BR2_PACKAGE_FLOT_RESIZE
67	bool "resize"
68	help
69	  Flot plugin for automatically redrawing plots when the
70	  placeholder size changes.
71
72config BR2_PACKAGE_FLOT_SELECTION
73	bool "selection"
74	help
75	  Flot plugin for selecting regions
76
77config BR2_PACKAGE_FLOT_STACK
78	bool "stack"
79	help
80	  Flot plugin for stacking data sets
81
82config BR2_PACKAGE_FLOT_SYMBOL
83	bool "symbol"
84	help
85	  Flot plugin that adds some extra symbols for plotting points
86
87config BR2_PACKAGE_FLOT_THRESHOLD
88	bool "threshold"
89	help
90	  Flot plugin for thresholding data
91
92config BR2_PACKAGE_FLOT_TIME
93	bool "time"
94	help
95	  Flot plugin for handling time axes
96
97endif
98