igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
48 lines (45 loc) • 1.72 kB
TypeScript
import { AxisAngleLabelMode } from "./AxisAngleLabelMode";
import { IgcNumericAxisBaseComponent } from "./igc-numeric-axis-base-component";
import { NumericAngleAxis } from "./NumericAngleAxis";
/**
* Represents a IgxDataChartComponent angle based axis for polar series.
*/
export declare class IgcNumericAngleAxisComponent extends IgcNumericAxisBaseComponent {
protected createImplementation(): NumericAngleAxis;
/**
* @hidden
*/
get i(): NumericAngleAxis;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcNumericAngleAxisComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets if the current axis is of angular axis type
*/
get isAngular(): boolean;
/**
* Indicates the angle in degress that the chart's 0th angle should be offset.
*/
get startAngleOffset(): number;
set startAngleOffset(v: number);
/**
* Indicates the mode axis labels will operate in.
*/
get labelMode(): AxisAngleLabelMode;
set labelMode(v: AxisAngleLabelMode);
/**
* Gets the scaled angle value in radians based on the raw input.
* @param unscaledAngle * The unscaled angle.
*/
getScaledAngle(unscaledAngle: number): number;
/**
* Gets the raw axis value back from the angle that would be used on the chart.
* @param scaledAngle * The chart angle value.
*/
getUnscaledAngle(scaledAngle: number): number;
}