igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
42 lines (41 loc) • 1.76 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 { AxisAnnotationFrame } from "./AxisAnnotationFrame";
import { List$1 } from "igniteui-react-core";
import { Brush } from "igniteui-react-core";
import { Frame } from "./Frame";
import { FrameExtended } from "./FrameExtended";
import { Number_$type, markType } from "igniteui-react-core";
/**
* @hidden
*/
export let CrosshairLayerFrame = /*@__PURE__*/ (() => {
class CrosshairLayerFrame extends AxisAnnotationFrame {
constructor() {
super();
this.af = null;
this.ag = null;
this.ae = null;
this.ah = null;
this.af = new List$1(Number_$type, 0);
this.ag = new List$1(Number_$type, 0);
this.ae = new List$1(Brush.$, 0);
this.ah = new List$1(Brush.$, 0);
}
c(a, b, c) {
super.c(a, b, c);
let d = b;
let e = c;
Frame.b(this.af, a, d.af, e.af);
Frame.b(this.ag, a, d.ag, e.ag);
FrameExtended.a(this.ae, a, d.ae, e.ae, 0);
FrameExtended.a(this.ah, a, d.ah, e.ah, 0);
}
}
CrosshairLayerFrame.$t = /*@__PURE__*/ markType(CrosshairLayerFrame, 'CrosshairLayerFrame', AxisAnnotationFrame.$);
return CrosshairLayerFrame;
})();