igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.36 kB
TypeScript
import { IgcRing } from "./igc-ring";
import { IgcRingSeriesBaseComponent } from "./igc-ring-series-base-component";
import { RingSeries } from "./RingSeries";
import { IgcIndexCollection } from "./igc-index-collection";
/**
* Represents one ring in
* IgxDoughnutChartComponent series.
*/
export declare class IgcRingSeriesComponent extends IgcRingSeriesBaseComponent {
protected createImplementation(): RingSeries;
get i(): RingSeries;
constructor();
private _explodedSlices;
/**
* Gets or sets the collection of exploded slice indices.
*/
get explodedSlices(): IgcIndexCollection;
set explodedSlices(v: IgcIndexCollection);
private _selectedSlices;
/**
* Gets or sets the collection of selected slice indices.
*/
get selectedSlices(): IgcIndexCollection;
set selectedSlices(v: IgcIndexCollection);
sychronizeCollections(): void;
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcRingSeriesComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets reference to the ring data.
*/
get ring(): IgcRing;
set ring(v: IgcRing);
findByName(name: string): any;
}