UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

223 lines (218 loc) 7.58 kB
import { Component, Input } from '@angular/core'; import { TrendLineType, TrendLineType_$type } from "igniteui-angular-core"; import { IgxRadialBaseComponent } from "./igx-radial-base-component"; import { ensureBool, ensureEnum, brushToString, stringToBrush, toDoubleCollection, fromDoubleCollection, toPoint, fromPoint } from "igniteui-angular-core"; import * as i0 from "@angular/core"; /** * Represents the base class for all IgxDataChartComponent anchored radial category series. */ export class IgxAnchoredRadialSeriesComponent extends IgxRadialBaseComponent { /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } /** * Gets or sets whether to normalize the values against the category values if using a proportional category axis. */ get useCategoryNormalizedValues() { return this.i.ady; } set useCategoryNormalizedValues(v) { this.i.ady = ensureBool(v); } /** * Gets or sets the item path that provides the values for the current series. */ get valueMemberPath() { return this.i.aee; } set valueMemberPath(v) { this.i.aee = v; } /** * Gets or sets the value mapping property for the current series object. */ get highlightedValueMemberPath() { return this.i.ad6; } set highlightedValueMemberPath(v) { this.i.ad6 = v; } /** * Gets or sets the label displayed before series value in the Data Legend. */ get valueMemberAsLegendLabel() { return this.i.aea; } set valueMemberAsLegendLabel(v) { this.i.aea = v; } /** * Gets or sets the unit displayed after series value in the Data Legend. */ get valueMemberAsLegendUnit() { return this.i.aec; } set valueMemberAsLegendUnit(v) { this.i.aec = v; } /** * Gets or sets the trend type for the current series object. */ get trendLineType() { return this.i.adn; } set trendLineType(v) { this.i.adn = ensureEnum(TrendLineType_$type, v); } /** * Gets or sets the brush that specifies how to the current series * object's Trend line is drawn. */ get trendLineBrush() { return brushToString(this.i.ae2); } set trendLineBrush(v) { this.i.ae2 = stringToBrush(v); } /** * Gets the effective TrendLineBrush for this series. */ get actualTrendLineBrush() { return brushToString(this.i.ae1); } set actualTrendLineBrush(v) { this.i.ae1 = stringToBrush(v); } /** * Gets or sets the thickness of the current series object's trend line. */ get trendLineThickness() { return this.i.ad3; } set trendLineThickness(v) { this.i.ad3 = +v; } /** * Gets or sets a collection of double values that indicate the pattern of dashes and gaps that * is used to draw the trend line for the current series object. */ get trendLineDashArray() { return fromDoubleCollection(this.i.ae3); } set trendLineDashArray(v) { this.i.ae3 = toDoubleCollection(v); } /** * Gets or sets the trend line period for the current series. * The typical, and initial, value for bollinger band periods is 20. */ get trendLinePeriod() { return this.i.ad4; } set trendLinePeriod(v) { this.i.ad4 = +v; } /** * Sets or Gets the Z index of the trendline. */ get trendLineZIndex() { return this.i.ad5; } set trendLineZIndex(v) { this.i.ad5 = +v; } get hasValueAxis() { return this.i.em; } get isValueAxisInverted() { return this.i.gc; } getItemValue(item, memberPathName) { let iv = this.i.k1(item, memberPathName); return (iv); } /** * Gets the value of a requested member path from the series. * @param memberPathName * The property name of a valid member path for the series */ getMemberPathValue(memberPathName) { let iv = this.i.mq(memberPathName); return (iv); } getPreviousOrExactIndex(world, skipUnknowns) { let iv = this.i.kl(toPoint(world), skipUnknowns); return (iv); } getNextOrExactIndex(world, skipUnknowns) { let iv = this.i.kj(toPoint(world), skipUnknowns); return (iv); } getSeriesValue(world, useInterpolation, skipUnknowns) { let iv = this.i.jf(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.wy(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } /** * Returns the offset value for this series if grouped on a category axis. */ getOffsetValue() { let iv = this.i.getOffsetValue(); return (iv); } /** * Returns the width of the category grouping this series is in. */ getCategoryWidth() { let iv = this.i.getCategoryWidth(); return (iv); } /** * Scrolls the specified item into the view. * @param item * The item to scroll into view. */ scrollIntoView(item) { let iv = this.i.gl(item); return (iv); } static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0-rc.1", ngImport: i0, type: IgxAnchoredRadialSeriesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); } static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0-rc.1", type: IgxAnchoredRadialSeriesComponent, isStandalone: true, selector: "ng-component", inputs: { useCategoryNormalizedValues: "useCategoryNormalizedValues", valueMemberPath: "valueMemberPath", highlightedValueMemberPath: "highlightedValueMemberPath", valueMemberAsLegendLabel: "valueMemberAsLegendLabel", valueMemberAsLegendUnit: "valueMemberAsLegendUnit", trendLineType: "trendLineType", trendLineBrush: "trendLineBrush", actualTrendLineBrush: "actualTrendLineBrush", trendLineThickness: "trendLineThickness", trendLineDashArray: "trendLineDashArray", trendLinePeriod: "trendLinePeriod", trendLineZIndex: "trendLineZIndex" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true }); } } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0-rc.1", ngImport: i0, type: IgxAnchoredRadialSeriesComponent, decorators: [{ type: Component, args: [{ template: ``, }] }], ctorParameters: () => [], propDecorators: { useCategoryNormalizedValues: [{ type: Input }], valueMemberPath: [{ type: Input }], highlightedValueMemberPath: [{ type: Input }], valueMemberAsLegendLabel: [{ type: Input }], valueMemberAsLegendUnit: [{ type: Input }], trendLineType: [{ type: Input }], trendLineBrush: [{ type: Input }], actualTrendLineBrush: [{ type: Input }], trendLineThickness: [{ type: Input }], trendLineDashArray: [{ type: Input }], trendLinePeriod: [{ type: Input }], trendLineZIndex: [{ type: Input }] } });