igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
103 lines (99 loc) • 3.53 kB
JavaScript
import { __extends } from "tslib";
import { IgrVerticalAnchoredCategorySeries } from "./igr-vertical-anchored-category-series";
import { BarSeries } from "./BarSeries";
import { toPoint, fromRect } from "igniteui-react-core";
/**
* Represents a IgxDataChartComponent bar series.
*/
var IgrBarSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrBarSeries, _super);
function IgrBarSeries(props) {
return _super.call(this, props) || this;
}
IgrBarSeries.prototype.createImplementation = function () {
return new BarSeries();
};
Object.defineProperty(IgrBarSeries.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBarSeries.prototype, "isBar", {
/**
* Gets whether the current series shows a bar shape.
*/
get: function () {
return this.i.ez;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBarSeries.prototype, "isMarkerlessDisplayPreferred", {
/**
* Overridden by derived series classes to indicate when marker-less display is preferred or not.
*/
get: function () {
return this.i.fm;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBarSeries.prototype, "radiusX", {
/**
* Gets or sets the x-radius of the ellipse that is used to round the corners of the bar.
*/
get: function () {
return this.i.ac2;
},
set: function (v) {
this.i.ac2 = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBarSeries.prototype, "radiusY", {
/**
* Gets or sets the y-radius of the ellipse that is used to round the corners of the bar.
*/
get: function () {
return this.i.ac3;
},
set: function (v) {
this.i.ac3 = +v;
},
enumerable: false,
configurable: true
});
/**
* If possible, will return the best available value bounding box within the series that has the best value match for the world position provided.
* @param world * The world coordinate for which to get a value bounding box for
*/
IgrBarSeries.prototype.getSeriesValueBoundingBox = function (world) {
var iv = this.i.wy(toPoint(world));
return fromRect(iv);
};
/**
* Scrolls the series to display the item for the specified data item.
* The series is scrolled by the minimum amount required to place the specified data item within
* the central 80% of the visible axis.
* @param item * The data item (item) to scroll to.
*/
IgrBarSeries.prototype.scrollIntoView = function (item) {
var iv = this.i.ge(item);
return (iv);
};
/**
* For a category plotted series, returns the current width of the items within the categories. This only returns a value if the items have some form of width (e.g. columns, bars, etc.) otherwise 0 is returned.
*/
IgrBarSeries.prototype.getItemSpan = function () {
var iv = this.i.iy();
return (iv);
};
return IgrBarSeries;
}(IgrVerticalAnchoredCategorySeries));
export { IgrBarSeries };