ngx-mat-lib
Version:
A bunch of utilities and components to use in your Angular 7+ apps!
22 lines (21 loc) • 774 B
TypeScript
import { ComponentFactoryResolver, ViewContainerRef } from "@angular/core";
import { XmatLegendItem, XmatLegendLayout } from "./xmat-legend.model";
import { XmatLegendItemStyle } from "./xmat-legend.model";
export declare class XmatLegendComponent {
private _resolver;
private _viewContainerRef;
fillColumns: boolean;
columns: number;
items: XmatLegendItem[];
layout: XmatLegendLayout;
itemStyle: XmatLegendItemStyle;
private _columns;
private _fillColumns;
private _items;
private _itemContentClass;
private _itemContentRef;
constructor(_resolver: ComponentFactoryResolver, _viewContainerRef: ViewContainerRef);
private _constructContent;
private _legendInit;
private _updateItemStyle;
}