summaryrefslogtreecommitdiffstats
path: root/package/flot/Config.in
blob: 90a4278c00444933127edbac83ba8f6c5e04aae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
config BR2_PACKAGE_FLOT
	bool "flot"
	select BR2_PACKAGE_JQUERY
	help
	  Flot is a pure Javascript plotting library for jQuery. It
	  produces graphical plots of arbitrary datasets on-the-fly
	  client-side.

	  The focus is on simple usage (all settings are optional),
	  attractive looks and interactive features like zooming and
	  mouse tracking.

	  The plugin works with Internet Explorer 6+, Firefox 2.x+,
	  Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML
	  canvas tag.

	  http://www.flotcharts.org/

if BR2_PACKAGE_FLOT

comment "flot plugins"

config BR2_PACKAGE_FLOT_CANVAS
	bool "canvas"
	help
	  Flot plugin to render axis tick labels directly to the canvas

config BR2_PACKAGE_FLOT_FILLBETWEEN
	bool "fillbetween"
	help
	  Flot plugin for computing bottoms for filled line and bar charts

config BR2_PACKAGE_FLOT_NAVIGATE
	bool "navigate"
	help
	  Flot plugin for adding panning and zooming capabilities to a plot

config BR2_PACKAGE_FLOT_PIE
	bool "pie"
	help
	  Flot plugin for rendering pie charts

config BR2_PACKAGE_FLOT_RESIZE
	bool "resize"
	help
	  Flot plugin for automatically redrawing plots when the
	  placeholder size changes.

config BR2_PACKAGE_FLOT_SELECTION
	bool "selection"
	help
	  Flot plugin for selecting regions

config BR2_PACKAGE_FLOT_STACK
	bool "stack"
	help
	  Flot plugin for stacking data sets

config BR2_PACKAGE_FLOT_SYMBOL
	bool "symbol"
	help
	  Flot plugin that adds some extra symbols for plotting points

config BR2_PACKAGE_FLOT_THRESHOLD
	bool "threshold"
	help
	  Flot plugin for thresholding data

endif