UNPKG

igniteui-webcomponents-charts

Version:

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

51 lines (48 loc) 1.92 kB
import { IgcAnchoredRadialSeriesComponent } from "./igc-anchored-radial-series-component"; import { RadialColumnSeries } from "./RadialColumnSeries"; /** * Represents a IgxDataChartComponent radial column series. * Compare values across categories by using radial rectangles. */ export declare class IgcRadialColumnSeriesComponent extends IgcAnchoredRadialSeriesComponent { protected createImplementation(): RadialColumnSeries; /** * @hidden */ get i(): RadialColumnSeries; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcRadialColumnSeriesComponent; 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. */ 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. */ get radiusY(): number; set radiusY(v: number); /** * When overridden in a derived class, is invoked whenever application code or internal processes * call ApplyTemplate. */ onApplyTemplate(): void; /** * 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. */ getItemSpan(): number; }