igniteui-react-core
Version:
Ignite UI React Core.
59 lines (58 loc) • 2.96 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { DataAnnotationInfoDescription } from "./DataAnnotationInfoDescription";
/**
* @hidden
*/
var DataAnnotationInfoDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataAnnotationInfoDescriptionMetadata, _super);
function DataAnnotationInfoDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
DataAnnotationInfoDescriptionMetadata.b = function (a) {
if (DataAnnotationInfoDescriptionMetadata.a == null) {
DataAnnotationInfoDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
DataAnnotationInfoDescriptionMetadata.c(DataAnnotationInfoDescriptionMetadata.a);
}
if (a.k(DataAnnotationInfoDescriptionMetadata.a)) {
return;
}
a.ac(DataAnnotationInfoDescriptionMetadata.a);
};
DataAnnotationInfoDescriptionMetadata.c = function (a) {
a.item("XAxisPixel", "Number:double");
a.item("YAxisPixel", "Number:double");
a.item("XAxisWindow", "Number:double");
a.item("YAxisWindow", "Number:double");
a.item("XAxisValue", "Number:double");
a.item("YAxisValue", "Number:double");
a.item("DataIndex", "Number:double");
a.item("DataValueX", "Number:double");
a.item("DataValueY", "Number:double");
a.item("DataLabelX", "String");
a.item("DataLabelY", "String");
a.item("XAxisLabel", "String");
a.item("YAxisLabel", "String");
a.item("TextColor", "Brush");
a.item("Background", "Brush");
a.item("BorderColor", "Brush");
a.item("BorderRadius", "Number:double");
a.item("BorderThickness", "Number:double");
};
DataAnnotationInfoDescriptionMetadata.d = function (a) {
DataAnnotationInfoDescriptionMetadata.b(a);
a.ae("DataAnnotationInfo", function () { return new DataAnnotationInfoDescription(); });
a.ad("DataAnnotationInfo", DataAnnotationInfoDescriptionMetadata.a);
};
DataAnnotationInfoDescriptionMetadata.$t = markType(DataAnnotationInfoDescriptionMetadata, 'DataAnnotationInfoDescriptionMetadata');
DataAnnotationInfoDescriptionMetadata.a = null;
return DataAnnotationInfoDescriptionMetadata;
}(Base));
export { DataAnnotationInfoDescriptionMetadata };