gchart.lua

Wed, 24 Jun 2009 19:37:41 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 24 Jun 2009 19:37:41 +0100
changeset 5
b4983e638117
parent 4
e17867506327
child 6
8d4be5429414
permissions
-rw-r--r--

Support for auto-scaling of data

0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 module(..., package.seeall);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 local chart = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 chart.__index = chart;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 local writers = {}; -- Table of functions which build the URL
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 -- Defaults
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 chart.base_url = "http://chart.apis.google.com/chart";
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 chart.width, chart.height = 320, 200;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 chart.marker_color = "4D89F9";
5
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
13 chart.auto_scale_factor = 0.25;
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 -- Helpers
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 local function urlencode(s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end
4
e17867506327 Fix "bar" type to be vertical by default
Matthew Wild <mwild1@gmail.com>
parents: 3
diff changeset
17 local typemap = { line = "lc", sparkline = "ls", plot = "lxy", bar = "bvs" };
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18
2
107b9d00e4d4 gchart.new_chart() => gchart.new()
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
19 function new(type)
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 local chart_obj = {
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 type = typemap[type] or type or "lc";
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 series = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 axes = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 markers = {};
5
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
25 scale = { min = true, max = true };
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26 };
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
28 return setmetatable(chart_obj, chart);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
29 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
31 -- Library methods --
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
32
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
33 function set_base_url(url)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 chart.base_url = url;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
36
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37 function set_default_size(width, height)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
38 chart.width, chart.height = width or 320, height or 200;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
39 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
40
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
41 ----- Chart methods -----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
42
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
43 ---- Base URL ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44 function chart:set_base_url(url)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
45 self.base_url = url;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
46 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
47
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
48 -- No writer for base URL
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50 ---- Chart type ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 function chart:set_type(type)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52 self.type = typemap[type] or type;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
53 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
54
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
55 -- No writer for type
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57 ---- Data series ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 function chart:add_series(data)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 table.insert(self.series, data);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 local ee_string = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-.";
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63 local ee_len = #ee_string;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64 local function to_extended_encoding(value)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65 value = tonumber(value);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 if not value or value < 0 then return "__"; end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67 local div, rem = math.floor(value/ee_len)+1, math.floor(value % ee_len)+1;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 return ee_string:sub(div, div)..ee_string:sub(rem, rem);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 function writers:data()
5
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
72
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
73 if self.scale then
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
74 local autoscale_min, autoscale_max = (self.scale.min == true), (self.scale.max == true);
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
75 if autoscale_min or autoscale_max then
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
76 local min, max;
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
77 for n, series in ipairs(self.series) do
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
78 min, max = min or series[1], max or series[1];
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
79 for _, value in ipairs(series) do
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
80 if autoscale_min and value < min then min = value; end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
81 if autoscale_max and value > max then max = value; end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
82 end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
83 end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
84 if autoscale_min then
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
85 self.scale.min = min*(1-self.auto_scale_factor);
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
86 end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
87 if autoscale_max then
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
88 self.scale.max = max*(1+self.auto_scale_factor);
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
89 end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
90 end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
91 end
b4983e638117 Support for auto-scaling of data
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
92
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 local data = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
94 for n, series in ipairs(self.series) do
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
95 local encoded = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96 for _, value in ipairs(series) do
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97 if self.scale and value > 0 then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
98 --value = value - (self.scale.min or 0);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 --print(string.format("4096/(%d-%d)/(%d-%d) = %f", self.scale.max, self.scale.min, value, self.scale.min), value);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100 value = 4096/((self.scale.max-self.scale.min)/(value-self.scale.min));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 table.insert(encoded, to_extended_encoding(value));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
103 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
104 table.insert(data, table.concat(encoded));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106 return "chd=e:"..table.concat(data, ",");
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 ---- Scale ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110 function chart:set_scale(min, max)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111 self.scale = { min = min, max = max };
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
113
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
114 ---- Size ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
115 function chart:set_size(width, height)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
116 self.width, self.height = width, height;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
118
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
119 function writers:size()
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
120 return "chs="..tostring(self.width).."x"..tostring(self.height);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
122
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
123 ---- Title ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124 function chart:set_title(title)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
125 self.title = title;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
126 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
127
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
128 function writers:title()
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
129 if self.title then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
130 return "chtt="..urlencode(tostring(self.title):gsub("\n", "|"));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
131 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
132 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
133
1
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
134 ---- Legend ----
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
135 function chart:set_legend(entries)
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
136 self.legend = entries;
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
137 end
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
138
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
139 function writers:legend()
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
140 if self.legend then
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
141 return "chdl="..table.concat(self.legend, "|");
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
142 end
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
143 end
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
144
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
145 ---- Legend position ----
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
146 local position_map = {
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
147 vertical = { bottom = "b", top = "t", left = "l", right = "r" };
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
148 horizontal = { bottom = "b", top = "t" };
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
149 };
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
150
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
151 function chart:set_legend_position(position, layout)
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
152 self.legend_position = positionmap[layout or "vertical"][position or "right"] or position;
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
153 end
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
154
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
155 function writers:legend_position()
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
156 if self.legend_position then
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
157 return "chdlp="..self.legend_position;
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
158 end
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
159 end
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
160 ---- Axes display ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
161 local axismap = { bottom = "x", left = "y", top = "t", right = "r" };
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
162 function chart:add_axis(which, options)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
163 table.insert(self.axes, { type = axismap[which], options = options });
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
164 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
165
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
166 function writers:axes()
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
167 local axes, ranges = {}, {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
168 local labels, positions = {}, {};
3
49a62f0f4a96 Fix traceback when writing axes
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
169 local styles, ticklengths = {}, {};
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
170
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
171 for index, axis in ipairs(self.axes) do
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
172 index = index - 1;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
173 table.insert(axes, axis.type);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
174 if axis.options.range then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
175 local range = axis.options.range;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
176 table.insert(ranges, index..","..(range.min or 0)..","..(range.max or 100)..(range.interval and (","..range.interval) or ""));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
177 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
178 if axis.options.labels then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
179 if axis.options.labels[1] then -- A list of strings
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
180 table.insert(labels, index..":|"..table.concat(axis.options.labels, "|"));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
181 else -- Specifying positions too
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
182 local label_list, position_list = {}, {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
183 for label, position in pairs(axis.options.labels) do
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
184 table.insert(label_list, label);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
185 table.insert(position_list, position);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
186 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
187 table.insert(labels, index..":|"..table.concat(label_list, "|"));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
188 table.insert(positions, index..","..table.concat(positions, ","));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
189 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
190 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
191 if axis.options.style then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
192 table.insert(styles, index..","..axis.options.style);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
193 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
194 if axis.options.ticklength then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
195 table.insert(ticklengths, index..","..axis.options.ticklength);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
196 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
197 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
198
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
199 local result = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
200
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
201 if next(axes) then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
202 table.insert(result, "chxt="..urlencode(table.concat(axes, ",")));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
203 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
204 if next(ranges) then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
205 table.insert(result, "chxr="..urlencode(table.concat(ranges, ",")));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
206 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
207 if next(labels) then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
208 table.insert(result, "chxl="..urlencode(table.concat(labels, "|")));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
209 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
210 if next(positions) then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
211 table.insert(result, "chxp="..urlencode(table.concat(positions, ",")));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
212 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
213 if next(styles) then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
214 table.insert(result, "chxs="..urlencode(table.concat(styles, "|")));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
215 end
1
f930ba6a8923 Support for legends, and legend positioning
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
216 if next(ticklengths) then
0
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
217 table.insert(result, "chxtc="..urlencode(table.concat(ticklengths, "|")));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
218 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
219
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
220 return table.concat(result, "&");
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
221 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
222
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
223 ---- Data points ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
224 function chart:add_marker(marker)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
225 table.insert(self.markers, marker);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
226 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
227
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
228 local marker_type_map = { flag = "f", text = "t", number = "N" };
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
229 function writers:markers()
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
230 local result = { };
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
231 for _, marker in ipairs(self.markers) do
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
232 table.insert(result, urlencode(
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
233 (marker_type_map[marker.type] or "f")
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
234 ..(marker.label or "Label")..","
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
235 ..(marker.color or self.marker_color)..","
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
236 ..(marker.series or 0)..","
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
237 ..(marker.index or 0)..","
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
238 ..(marker.size or 11)..","
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
239 ..(marker.priority or 0)));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
240 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
241 if next(result) then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
242 return "chm="..table.concat(result, "%7c");
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
243 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
244 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
245
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
246 ---- Colours and fill ----
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
247 function chart:set_color(color)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
248 self.color = color;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
249 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
250
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
251 function chart:set_fill(fill_color)
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
252 self.fill = fill_color;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
253 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
254
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
255 function writers:color()
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
256 if self.color then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
257 return "chco="..self.color;
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
258 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
259 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
260
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
261 function chart:url()
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
262 local url = self.base_url.."?cht="..self.type.."&";
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
263
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
264 local params = {};
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
265 for name, writer in pairs(writers) do
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
266 local ret = writer(self);
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
267 if ret then
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
268 table.insert(params, tostring(ret));
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
269 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
270 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
271
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
272 return url..table.concat(params, "&");
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
273 end
757c17d808a8 Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
274

mercurial