UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

66 lines (63 loc) 2.55 kB
import { OthersCategoryType } from "igniteui-webcomponents-core"; import { IgcCategoryAngleAxisComponent } from "./igc-category-angle-axis-component"; import { ProportionalCategoryAngleAxis } from "./ProportionalCategoryAngleAxis"; /** * Represents a IgxDataChartComponent category angle axis. Useful for displaying radial categories. */ export declare class IgcProportionalCategoryAngleAxisComponent extends IgcCategoryAngleAxisComponent { protected createImplementation(): ProportionalCategoryAngleAxis; /** * @hidden */ get i(): ProportionalCategoryAngleAxis; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcProportionalCategoryAngleAxisComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the Value mapping property for the axis. */ get valueMemberPath(): string; set valueMemberPath(v: string); get normalizationMayContainUnknowns(): boolean; /** * Gets or sets the threshold value that determines if categories are grouped into the Others category. */ get othersCategoryThreshold(): number; set othersCategoryThreshold(v: number); /** * Gets or sets whether to use numeric or percent-based threshold value. */ get othersCategoryType(): OthersCategoryType; set othersCategoryType(v: OthersCategoryType); /** * Gets or sets the label of the Others slice. */ get othersCategoryText(): string; set othersCategoryText(v: string); get isPiecewise(): boolean; get othersValue(): number; get othersIndex(): number; get hasOthersCategory(): boolean; getItemValue(item: any, memberPathName: string): any; /** * Gets a scaled value inside the viewport. * @param unscaledValue * Value to scale. * @param p * Scaler parameters */ getScaledAngle(unscaledAngle: number): number; /** * Returns an unscaled value from a scaled value based on the amount of data. * @param scaledValue * Scaled value. * @param p * Scaler parameters */ getUnscaledAngle(scaledAngle: number): number; isOthersValue(index: number): boolean; getValueLabel(value: number): string; getNormalizingValueAtIndex(index: number, fallbackValue: number): number; getPercentageValue(labelIndex: number): number; }