@rfprodz/client-d3-charts
Version:
Angular chart components based on D3JS (https://d3js.org).
24 lines (23 loc) • 1.12 kB
TypeScript
import { BreakpointObserver } from '@angular/cdk/layout';
import { IForceDirectedChartData, IForceDirectedChartOptions } from '../../interfaces/force-directed-chart.interface';
import * as i0 from "@angular/core";
/** Force directed chart example. */
export declare class AppChartExamplesForceDirectedComponent {
private readonly breakpointObserver;
/** Sample chart data. */
private readonly value;
/** The chart data. */
private get chartData();
/** The chart options. */
private get chartOptions();
/** the breakpoint observer stream. */
private readonly breakpoint$;
/** The chart configuration stream. */
readonly chartConfig$: import("rxjs").Observable<{
data: IForceDirectedChartData;
options: Partial<IForceDirectedChartOptions>;
}>;
constructor(breakpointObserver: BreakpointObserver);
static ɵfac: i0.ɵɵFactoryDeclaration<AppChartExamplesForceDirectedComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AppChartExamplesForceDirectedComponent, "app-chart-examples-force-directed", never, {}, {}, never, never, false, never>;
}