UNPKG

igniteui-webcomponents-charts

Version:

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

74 lines (71 loc) 2.87 kB
import { IgRect } from "igniteui-webcomponents-core"; import { IgPoint } from "igniteui-webcomponents-core"; import { IgcHorizontalRangeCategorySeriesComponent } from "./igc-horizontal-range-category-series-component"; import { RangeColumnSeries } from "./RangeColumnSeries"; /** * Represents a IgxDataChartComponent range column series. * * The `RangeColumnSeries` class represents range column series of the IgxDataChartComponent. */ export declare class IgcRangeColumnSeriesComponent extends IgcHorizontalRangeCategorySeriesComponent { protected createImplementation(): RangeColumnSeries; /** * @hidden */ get i(): RangeColumnSeries; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcRangeColumnSeriesComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets whether the current series shows a column shape. */ get isColumn(): boolean; /** * Overridden by derived series classes to indicate when marker-less display is preferred or not. */ get isMarkerlessDisplayPreferred(): boolean; /** * Gets or sets the x-radius of the ellipse that is used to round the corners of the column. * * Use the `RadiusX` property to round the corners of the column. * * ```ts * series.radiusX=10; * ``` */ get radiusX(): number; set radiusX(v: number); /** * Gets or sets the y-radius of the ellipse that is used to round the corners of the column. * * Use the `RadiusY` property for the y-radius of the ellipse that is used to round the corners of the column. * * ```ts * series.radiusY=10; * ``` */ get radiusY(): number; set radiusY(v: number); /** * 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 * * The `GetSeriesValueBoundingBox` method return the best available value of the bounding box within the series. */ getSeriesValueBoundingBox(world: IgPoint): IgRect; /** * 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. * * The `GetItemSpan` method returns the current width of the items within the categories. * * ```ts * var x =series.getItemSpan(); * ``` */ getItemSpan(): number; }