38 lines
1021 B
JavaScript
38 lines
1021 B
JavaScript
var ContinuousTicker, FixedTicker, _, p,
|
|
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
hasProp = {}.hasOwnProperty;
|
|
|
|
_ = require("underscore");
|
|
|
|
ContinuousTicker = require("./continuous_ticker");
|
|
|
|
p = require("../../core/properties");
|
|
|
|
FixedTicker = (function(superClass) {
|
|
extend(FixedTicker, superClass);
|
|
|
|
function FixedTicker() {
|
|
return FixedTicker.__super__.constructor.apply(this, arguments);
|
|
}
|
|
|
|
FixedTicker.prototype.type = 'FixedTicker';
|
|
|
|
FixedTicker.define({
|
|
ticks: [p.Array, []]
|
|
});
|
|
|
|
FixedTicker.prototype.get_ticks_no_defaults = function(data_low, data_high, desired_n_ticks) {
|
|
return {
|
|
major: this.get('ticks'),
|
|
minor: []
|
|
};
|
|
};
|
|
|
|
return FixedTicker;
|
|
|
|
})(ContinuousTicker.Model);
|
|
|
|
module.exports = {
|
|
Model: FixedTicker
|
|
};
|