ag-grid-enterprise
Version:
AG Grid Enterprise Features
25 lines • 1.21 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AxisLine = void 0;
var validation_1 = require("../../util/validation");
var AxisLine = /** @class */ (function () {
function AxisLine() {
this.width = 1;
this.color = 'rgba(195, 195, 195, 1)';
}
__decorate([
validation_1.Validate(validation_1.NUMBER(0))
], AxisLine.prototype, "width", void 0);
__decorate([
validation_1.Validate(validation_1.OPT_COLOR_STRING)
], AxisLine.prototype, "color", void 0);
return AxisLine;
}());
exports.AxisLine = AxisLine;
//# sourceMappingURL=axisLine.js.map