igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
38 lines (36 loc) • 1.44 kB
TypeScript
import { UnknownValuePlotting } from "igniteui-webcomponents-core";
import { IgcAnchoredRadialSeriesComponent } from "./igc-anchored-radial-series-component";
import { RadialLineSeries } from "./RadialLineSeries";
/**
* Represents a IgxDataChartComponent radial line series.
*/
export declare class IgcRadialLineSeriesComponent extends IgcAnchoredRadialSeriesComponent {
protected createImplementation(): RadialLineSeries;
/**
* @hidden
*/
get i(): RadialLineSeries;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcRadialLineSeriesComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets whether the current series shows only line shapes.
*/
get isLineOnly(): boolean;
/**
* Determines how unknown values will be plotted on the chart.
* Null and Double.NaN are two examples of unknown values.
*/
get unknownValuePlotting(): UnknownValuePlotting;
set unknownValuePlotting(v: UnknownValuePlotting);
/**
* When overridden in a derived class, is invoked whenever application code or internal processes
* call ApplyTemplate.
*/
onApplyTemplate(): void;
}