igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
108 lines (100 loc) • 4.9 kB
TypeScript
import { IgPoint } from "igniteui-angular-core";
import { IgxNumericXAxisComponent } from "./igx-numeric-x-axis-component";
import { IgxCategoryAxisBaseComponent } from "./igx-category-axis-base-component";
import { IgxRangeCategorySeriesComponent } from "./igx-range-category-series-component";
import { VerticalRangeCategorySeries } from "./VerticalRangeCategorySeries";
import * as i0_1 from "@angular/core";
/**
* Base class for ranged category series with a numeric X-axis and a category Y-axis.
*/
export declare abstract class IgxVerticalRangeCategorySeriesComponent extends IgxRangeCategorySeriesComponent {
/**
* @hidden
*/
get i(): VerticalRangeCategorySeries;
constructor();
/**
* Gets or sets the effective x-axis for the current CategorySeries object.
*/
get xAxis(): IgxNumericXAxisComponent;
set xAxis(v: IgxNumericXAxisComponent);
/**
* Gets or sets the effective y-axis for the current CategorySeries object.
*/
get yAxis(): IgxCategoryAxisBaseComponent;
set yAxis(v: IgxCategoryAxisBaseComponent);
/**
* Gets whether or not the current series is vertical series
*/
get isVertical(): boolean;
static ngAcceptInputType_isVertical: boolean | string;
/**
* Checks if this series is a range series
*/
get isRange(): boolean;
static ngAcceptInputType_isRange: boolean | string;
/**
* Gets or sets the label displayed before series' Low value in the Data Legend.
*/
get lowMemberAsLegendLabel(): string;
set lowMemberAsLegendLabel(v: string);
/**
* Gets or sets the label displayed before series' High value in the Data Legend.
*/
get highMemberAsLegendLabel(): string;
set highMemberAsLegendLabel(v: string);
/**
* Gets or sets the unit displayed after series' Low value in the Data Legend.
*/
get lowMemberAsLegendUnit(): string;
set lowMemberAsLegendUnit(v: string);
/**
* Gets or sets the unit displayed after series' High value in the Data Legend.
*/
get highMemberAsLegendUnit(): string;
set highMemberAsLegendUnit(v: string);
findByName(name: string): any;
protected _styling(container: any, component: any, parent?: any): void;
/**
* Returns the offset value for this series if grouped on a category axis.
*/
getOffsetValue(): number;
/**
* Returns the width of the category grouping this series is in.
*/
getCategoryWidth(): number;
/**
* Gets the precise item index using the vertical (Y-based) category axis.
* The base implementation uses the horizontal interaction manager which reads world.X;
* vertical series must read world.Y instead.
*/
getExactItemIndex(world: IgPoint): number;
/**
* Gets the index of the item that resides at the provided world coordinates (vertical orientation).
*/
getItemIndex(world: IgPoint): number;
/**
* Gets the item that is the best match for the specified world coordinates (vertical orientation).
*/
getItem(world: IgPoint): any;
getNextOrExactIndex(world: IgPoint, skipUnknowns: boolean): number;
getPreviousOrExactIndex(world: IgPoint, skipUnknowns: boolean): number;
getSeriesValue(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): number;
getSeriesLowValue(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): number;
getSeriesHighValue(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): number;
getSeriesHighValuePosition(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): IgPoint;
getSeriesLowValuePosition(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): IgPoint;
getSeriesValuePosition(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): IgPoint;
/**
* Determine if object can be used as YAxis
* @param axis * The object to check
*/
canUseAsYAxis(axis: any): boolean;
/**
* Determine if object can be used as XAxis
* @param axis * The object to check
*/
canUseAsXAxis(axis: any): boolean;
static ɵfac: i0_1.ɵɵFactoryDeclaration<IgxVerticalRangeCategorySeriesComponent, never>;
static ɵcmp: i0_1.ɵɵComponentDeclaration<IgxVerticalRangeCategorySeriesComponent, "ng-component", never, { "xAxis": { "alias": "xAxis"; "required": false; }; "yAxis": { "alias": "yAxis"; "required": false; }; "lowMemberAsLegendLabel": { "alias": "lowMemberAsLegendLabel"; "required": false; }; "highMemberAsLegendLabel": { "alias": "highMemberAsLegendLabel"; "required": false; }; "lowMemberAsLegendUnit": { "alias": "lowMemberAsLegendUnit"; "required": false; }; "highMemberAsLegendUnit": { "alias": "highMemberAsLegendUnit"; "required": false; }; }, {}, never, never, true, never>;
}