igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
160 lines (159 loc) • 5.49 kB
TypeScript
import { IgcHTMLElement } from "igniteui-webcomponents-core";
import { HorizontalAlignment } from "igniteui-webcomponents-core";
import { VerticalAlignment } from "igniteui-webcomponents-core";
import { TreemapNodeStyle } from "./TreemapNodeStyle";
/**
* Represents a style to apply to a treemap node.
*/
export declare class IgcTreemapNodeStyleComponent extends IgcHTMLElement {
protected createImplementation(): TreemapNodeStyle;
protected _implementation: any;
/**
* @hidden
*/
get i(): TreemapNodeStyle; /**
* @hidden
*/
static _createFromInternal(internal: any): IgcTreemapNodeStyleComponent;
private onImplementationCreated;
constructor();
private _settingAttributes;
protected _attached: boolean;
private _queuedSetAttributes;
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
protected _flushQueuedAttributes(): void;
protected _a(attrName: string, attrValue: any): void;
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcTreemapNodeStyleComponent;
static get observedAttributes(): string[];
private _updatingFromAttribute;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the background to use for the header when it is hovered.
*/
get headerHoverBackground(): string;
set headerHoverBackground(v: string);
/**
* Gets or sets the background to use for the header.
*/
get headerBackground(): string;
set headerBackground(v: string);
/**
* Gets or sets the text color to use for the header.
*/
get headerTextColor(): string;
set headerTextColor(v: string);
/**
* Gets or sets the label to use for the node.
*/
get label(): string;
set label(v: string);
/**
* Gets or sets the text color to use for the nodes.
*/
get textColor(): string;
set textColor(v: string);
/**
* Gets or sets the text color to use for the header.
*/
get headerHoverTextColor(): string;
set headerHoverTextColor(v: string);
/**
* Gets or sets the left margin to use for the header.
*/
get headerLabelLeftMargin(): number;
set headerLabelLeftMargin(v: number);
/**
* Gets or sets the top margin to use for the header.
*/
get headerLabelTopMargin(): number;
set headerLabelTopMargin(v: number);
/**
* Gets or sets the right margin to use for the header.
*/
get headerLabelRightMargin(): number;
set headerLabelRightMargin(v: number);
/**
* Gets or sets the bottom margin to use for the labels.
*/
get headerLabelBottomMargin(): number;
set headerLabelBottomMargin(v: number);
/**
* Gets or sets the left margin to use for the labels.
*/
get labelLeftMargin(): number;
set labelLeftMargin(v: number);
/**
* Gets or sets the top margin to use for the labels.
*/
get labelTopMargin(): number;
set labelTopMargin(v: number);
/**
* Gets or sets the right margin to use for the labels.
*/
get labelRightMargin(): number;
set labelRightMargin(v: number);
/**
* Gets or sets the bottom margin to use for the labels.
*/
get labelBottomMargin(): number;
set labelBottomMargin(v: number);
/**
* Gets or sets the height to use for the header.
*/
get headerHeight(): number;
set headerHeight(v: number);
/**
* Gets or sets the horizontal alignment to use for the node labels.
*/
get labelHorizontalAlignment(): HorizontalAlignment;
set labelHorizontalAlignment(v: HorizontalAlignment);
/**
* Gets or sets the vertical alignment to use for the node labels.
*/
get labelVerticalAlignment(): VerticalAlignment;
set labelVerticalAlignment(v: VerticalAlignment);
/**
* Gets or sets the fill color to use for the nodes.
*/
get fill(): string;
set fill(v: string);
/**
* Gets or sets the outline to use for the nodes.
*/
get outline(): string;
set outline(v: string);
/**
* Gets or sets the stroke thickness to use for the node outline.
*/
get strokeThickness(): number;
set strokeThickness(v: number);
/**
* Gets or sets the opacity to use for the node.
*/
get opacity(): number;
set opacity(v: number);
/**
* Gets or sets the fade opacity that should be used when highlighting.
*/
get fadeOpacity(): number;
set fadeOpacity(v: number);
/**
* Gets or sets if highlighting was handled, and whether internal highlighting logic should be skipped.
*/
get highlightingHandled(): boolean;
set highlightingHandled(v: boolean);
findByName(name: string): any;
protected __p: string;
protected _hasUserValues: Set<string>;
protected get hasUserValues(): Set<string>;
protected __m(propertyName: string): void;
protected _stylingContainer: any;
protected _stylingParent: any;
protected _inStyling: boolean;
protected _styling(container: any, component: any, parent?: any): void;
}