igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
106 lines (105 loc) • 3.63 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 { HorizontalAnchoredCategorySeries } from "./HorizontalAnchoredCategorySeries";
import { markType } from "igniteui-react-core";
import { List$1 } from "igniteui-react-core";
import { ChartSelection } from "./ChartSelection";
import { AnchoredCategorySeriesView } from "./AnchoredCategorySeriesView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-react-core";
/**
* @hidden
*/
var PointSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PointSeries, _super);
function PointSeries() {
var _this = _super.call(this) || this;
_this.ab = PointSeries.$;
return _this;
}
PointSeries.prototype.bk = function () {
return new PointSeries();
};
PointSeries.prototype.get_ek = function () {
return true;
};
PointSeries.prototype.ct = function () {
return new PointSeriesView(this);
};
PointSeries.prototype.q8 = function (a) {
_super.prototype.q8.call(this, a);
this.ac9 = a;
};
PointSeries.prototype.jo = function () {
return 0.7;
};
PointSeries.prototype.xc = function () {
if (this.xb == 0) {
return 2;
}
return _super.prototype.xc.call(this);
};
PointSeries.prototype.gx = function (a, b) {
var c = this.wn(this.ws(a), true, false);
if (this.xs(a, b)) {
return true;
}
return false;
};
PointSeries.prototype.rh = function (a, b, c, d) {
_super.prototype.rh.call(this, a, b, c, d);
};
PointSeries.prototype.qa = function (a, b, c) {
this.aaq(a, b, c, this.y4, 0);
};
PointSeries.prototype.ak = function (a, b) {
var c = new List$1(ChartSelection.$, 0);
this.qa(a, c, b);
return c.toArray();
};
Object.defineProperty(PointSeries.prototype, "useHighMarkerFidelity", {
get: function () {
return this.z1;
},
enumerable: false,
configurable: true
});
PointSeries.$t = markType(PointSeries, 'PointSeries', HorizontalAnchoredCategorySeries.$);
return PointSeries;
}(HorizontalAnchoredCategorySeries));
export { PointSeries };
/**
* @hidden
*/
var PointSeriesView = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PointSeriesView, _super);
function PointSeriesView(a) {
var _this = _super.call(this, a) || this;
_this.dt = null;
_this.dt = a;
return _this;
}
PointSeriesView.prototype.a4 = function () {
_super.prototype.a4.call(this);
if (!this.t) {
this.ch.xl = Defaults.e;
}
};
PointSeriesView.prototype.an = function () {
var a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.f.wc = a;
this.f.jq = 3;
this.f.jr = 2;
this.f.js = 2;
this.f.hd = false;
};
PointSeriesView.$t = markType(PointSeriesView, 'PointSeriesView', AnchoredCategorySeriesView.$);
return PointSeriesView;
}(AnchoredCategorySeriesView));
export { PointSeriesView };