@nova-ui/charts
Version:
Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that
23 lines (22 loc) • 1.14 kB
TypeScript
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
import { IChartMarker } from "../core/common/types";
import * as i0 from "@angular/core";
export declare class ChartMarkerComponent implements OnDestroy, AfterViewInit, OnChanges {
private changeDetector;
marker: IChartMarker;
drawLine: boolean;
color: string;
maxSize: number;
svgContent: ElementRef<SVGElement>;
viewBox: string;
height: string;
width: string;
private svg;
constructor(changeDetector: ChangeDetectorRef);
ngAfterViewInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
private renderMarkerSvg;
static ɵfac: i0.ɵɵFactoryDeclaration<ChartMarkerComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartMarkerComponent, "nui-chart-marker", never, { "marker": { "alias": "marker"; "required": false; }; "drawLine": { "alias": "drawLine"; "required": false; }; "color": { "alias": "color"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; }, {}, never, never, false, never>;
}