igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
176 lines (175 loc) • 5.28 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let FinancialSeriesDescription = /*@__PURE__*/ (() => {
class FinancialSeriesDescription extends SeriesDescription {
constructor() {
super();
this.fn = null;
this.ft = null;
this.fu = null;
this.fo = null;
this.fl = null;
this.fm = null;
this.ff = null;
this.fs = null;
this.fj = null;
this.fh = null;
this.fi = null;
this.fg = null;
this.fk = null;
this.fa = false;
this.fp = null;
this.fb = false;
this.fe = null;
this.fq = null;
this.fr = null;
}
get_type() {
return "FinancialSeries";
}
get negativeBrush() {
return this.fn;
}
set negativeBrush(a) {
this.fn = a;
this.j("NegativeBrush");
}
get xAxisRef() {
return this.ft;
}
set xAxisRef(a) {
this.ft = a;
this.j("XAxisRef");
}
get yAxisRef() {
return this.fu;
}
set yAxisRef(a) {
this.fu = a;
this.j("YAxisRef");
}
get openMemberPath() {
return this.fo;
}
set openMemberPath(a) {
this.fo = a;
this.j("OpenMemberPath");
}
get highMemberPath() {
return this.fl;
}
set highMemberPath(a) {
this.fl = a;
this.j("HighMemberPath");
}
get lowMemberPath() {
return this.fm;
}
set lowMemberPath(a) {
this.fm = a;
this.j("LowMemberPath");
}
get closeMemberPath() {
return this.ff;
}
set closeMemberPath(a) {
this.ff = a;
this.j("CloseMemberPath");
}
get volumeMemberPath() {
return this.fs;
}
set volumeMemberPath(a) {
this.fs = a;
this.j("VolumeMemberPath");
}
get highlightedOpenMemberPath() {
return this.fj;
}
set highlightedOpenMemberPath(a) {
this.fj = a;
this.j("HighlightedOpenMemberPath");
}
get highlightedHighMemberPath() {
return this.fh;
}
set highlightedHighMemberPath(a) {
this.fh = a;
this.j("HighlightedHighMemberPath");
}
get highlightedLowMemberPath() {
return this.fi;
}
set highlightedLowMemberPath(a) {
this.fi = a;
this.j("HighlightedLowMemberPath");
}
get highlightedCloseMemberPath() {
return this.fg;
}
set highlightedCloseMemberPath(a) {
this.fg = a;
this.j("HighlightedCloseMemberPath");
}
get highlightedVolumeMemberPath() {
return this.fk;
}
set highlightedVolumeMemberPath(a) {
this.fk = a;
this.j("HighlightedVolumeMemberPath");
}
get isCustomCategoryStyleAllowed() {
return this.fa;
}
set isCustomCategoryStyleAllowed(a) {
this.fa = a;
this.j("IsCustomCategoryStyleAllowed");
}
get transitionInMode() {
return this.fp;
}
set transitionInMode(a) {
this.fp = a;
this.j("TransitionInMode");
}
get isTransitionInEnabled() {
return this.fb;
}
set isTransitionInEnabled(a) {
this.fb = a;
this.j("IsTransitionInEnabled");
}
get assigningCategoryStyleRef() {
return this.fe;
}
set assigningCategoryStyleRef(a) {
this.fe = a;
this.j("AssigningCategoryStyleRef");
}
get typicalRef() {
return this.fq;
}
set typicalRef(a) {
this.fq = a;
this.j("TypicalRef");
}
get typicalBasedOnRef() {
return this.fr;
}
set typicalBasedOnRef(a) {
this.fr = a;
this.j("TypicalBasedOnRef");
}
}
FinancialSeriesDescription.$t = markType(FinancialSeriesDescription, 'FinancialSeriesDescription', SeriesDescription.$);
return FinancialSeriesDescription;
})();