Home | History | Annotate | Download | only in flot

Lines Matching full:opts

145 	function dateGenerator(ts, opts) {
146 if (opts.timezone == "browser") {
148 } else if (!opts.timezone || opts.timezone == "utc") {
154 d.setTimezone(opts.timezone);
201 var opts = axis.options;
203 if (opts.mode == "time") {
207 var d = dateGenerator(axis.min, opts);
213 var spec = (opts.tickSize && opts.tickSize[1] ===
215 (opts.minTickSize && opts.minTickSize[1] ===
218 if (opts.minTickSize != null) {
219 if (typeof opts.tickSize == "number") {
220 minSize = opts.tickSize;
222 minSize = opts.minTickSize[0] * timeUnitSize[opts.minTickSize[1]];
244 if (opts.minTickSize != null && opts.minTickSize[1] == "year") {
245 size = Math.floor(opts.minTickSize[0]);
271 axis.tickSize = opts.tickSize || [size, unit];
364 if (opts.timeformat != null) {
365 return formatDate(d, opts.timeformat, opts.monthNames, opts.dayNames);
378 var suffix = (opts.twelveHourClock) ? " %p" : "";
379 var hourCode = (opts.twelveHourClock) ? "%I" : "%H";
409 var rt = formatDate(d, fmt, opts.monthNames, opts.dayNames);