Home | History | Annotate | Download | only in flot

Lines Matching full:opts

736         function parseOptions(opts) {
738 $.extend(true, options, opts);
745 if (opts && opts.colors) {
746 options.colors = opts.colors;
1401 var opts = axis.options,
1403 labelWidth = opts.labelWidth || 0,
1404 labelHeight = opts.labelHeight || 0,
1408 font = opts.font || "flot-tick-label tickLabel";
1423 axis.labelWidth = opts.labelWidth || labelWidth;
1424 axis.labelHeight = opts.labelHeight || labelHeight;
1645 var opts = axis.options,
1646 min = +(opts.min != null ? opts.min : axis.datamin),
1647 max = +(opts.max != null ? opts.max : axis.datamax),
1654 if (opts.min == null)
1658 if (opts.max == null || opts.min != null)
1663 var margin = opts.autoscaleMargin;
1665 if (opts.min == null) {
1672 if (opts.max == null) {
1684 var opts = axis.options;
1688 if (typeof opts.ticks == "number" && opts.ticks > 0)
1689 noTicks = opts.ticks;
1697 maxDec = opts.tickDecimals;
1724 if (opts.minTickSize != null && size < opts.minTickSize) {
1725 size = opts.minTickSize;
1730 axis.tickSize = opts.tickSize || size;
1735 if (opts.mode == "time" && !axis.tickGenerator) {
1781 if ($.isFunction(opts.tickFormatter))
1782 axis.tickFormatter = function (v, axis) { return "" + opts.tickFormatter(v, axis); };
1784 if (opts.alignTicksWithAxis != null) {
1785 var otherAxis = (axis.direction == "x" ? xaxes : yaxes)[opts.alignTicksWithAxis - 1];
1790 if (opts.min == null)
1792 if (opts.max == null && niceTicks.length > 1)
1809 if (!axis.mode && opts.tickDecimals == null) {