@swimlane/ngx-charts
Advanced tools
Comparing version 20.0.1 to 20.1.0
@@ -59,3 +59,5 @@ import { EventEmitter, TemplateRef, TrackByFunction } from '@angular/core'; | ||
dataLabelMaxWidth: any; | ||
isSSR: boolean; | ||
barOrientation: typeof BarOrientation; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -62,0 +64,0 @@ getGroupScale(): any; |
@@ -53,2 +53,4 @@ import { EventEmitter, TemplateRef, TrackByFunction } from '@angular/core'; | ||
barChartType: typeof BarChartType; | ||
isSSR: boolean; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -55,0 +57,0 @@ getGroupDomain(): string[]; |
@@ -57,2 +57,4 @@ import { EventEmitter, TemplateRef, TrackByFunction } from '@angular/core'; | ||
barChartType: typeof BarChartType; | ||
isSSR: boolean; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -59,0 +61,0 @@ getGroupDomain(): string[]; |
@@ -60,3 +60,5 @@ import { EventEmitter, TemplateRef, TrackByFunction } from '@angular/core'; | ||
dataLabelMaxHeight: any; | ||
isSSR: boolean; | ||
barOrientation: typeof BarOrientation; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -63,0 +65,0 @@ onDataLabelMaxHeightChanged(event: any, groupIndex: number): void; |
@@ -52,3 +52,5 @@ import { EventEmitter, TemplateRef, TrackByFunction } from '@angular/core'; | ||
legendOptions: LegendOptions; | ||
isSSR: boolean; | ||
barChartType: typeof BarChartType; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -55,0 +57,0 @@ getGroupDomain(): string[]; |
@@ -57,3 +57,5 @@ import { EventEmitter, TemplateRef, TrackByFunction } from '@angular/core'; | ||
dataLabelMaxHeight: any; | ||
isSSR: boolean; | ||
barChartType: typeof BarChartType; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -60,0 +62,0 @@ getGroupDomain(): string[]; |
@@ -12,2 +12,3 @@ import { EventEmitter, OnChanges, TemplateRef } from '@angular/core'; | ||
export declare class SeriesVerticalComponent implements OnChanges { | ||
private platformId; | ||
dims: ViewDimensions; | ||
@@ -45,2 +46,5 @@ type: BarChartType; | ||
barOrientation: typeof BarOrientation; | ||
isSSR: boolean; | ||
constructor(platformId: any); | ||
ngOnInit(): void; | ||
ngOnChanges(changes: any): void; | ||
@@ -47,0 +51,0 @@ update(): void; |
@@ -64,2 +64,4 @@ import { EventEmitter, TemplateRef } from '@angular/core'; | ||
activeEntries: any[]; | ||
isSSR: boolean; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -66,0 +68,0 @@ hideCircles(): void; |
@@ -9,2 +9,3 @@ import { SimpleChanges, EventEmitter, OnChanges, TemplateRef } from '@angular/core'; | ||
export declare class BubbleSeriesComponent implements OnChanges { | ||
private platformId; | ||
data: BubbleChartSeries; | ||
@@ -30,2 +31,5 @@ xScale: any; | ||
styleTypes: typeof StyleTypes; | ||
isSSR: boolean; | ||
constructor(platformId: any); | ||
ngOnInit(): void; | ||
ngOnChanges(changes: SimpleChanges): void; | ||
@@ -32,0 +36,0 @@ update(): void; |
@@ -32,2 +32,3 @@ import { EventEmitter, OnChanges, OnInit, TemplateRef } from '@angular/core'; | ||
export declare class CircleSeriesComponent implements OnChanges, OnInit { | ||
private platformId; | ||
data: Series; | ||
@@ -58,2 +59,4 @@ type: SeriesType; | ||
styleTypes: typeof StyleTypes; | ||
isSSR: boolean; | ||
constructor(platformId: any); | ||
ngOnInit(): void; | ||
@@ -60,0 +63,0 @@ ngOnChanges(): void; |
@@ -75,2 +75,4 @@ import { EventEmitter, TemplateRef } from '@angular/core'; | ||
timelinePadding: number; | ||
isSSR: boolean; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -77,0 +79,0 @@ updateTimeline(): void; |
@@ -6,2 +6,3 @@ import { OnChanges, ElementRef, SimpleChanges } from '@angular/core'; | ||
private element; | ||
private platformId; | ||
path: string; | ||
@@ -14,3 +15,5 @@ stroke: string; | ||
initialPath: string; | ||
constructor(element: ElementRef); | ||
isSSR: boolean; | ||
constructor(element: ElementRef, platformId: any); | ||
ngOnInit(): void; | ||
ngOnChanges(changes: SimpleChanges): void; | ||
@@ -17,0 +20,0 @@ updatePathEl(): void; |
@@ -27,2 +27,9 @@ import { IVector2D } from './coordinates.model'; | ||
} | ||
export interface PieGridData { | ||
data: PieGridDataItem; | ||
height: number; | ||
width: number; | ||
x: number; | ||
y: number; | ||
} | ||
export interface PieGridDataItem extends DataItem { | ||
@@ -29,0 +36,0 @@ percent: number; |
import { EventEmitter, ElementRef, OnChanges, SimpleChanges } from '@angular/core'; | ||
import { PieGridData } from '../models/pie-grid-data.model'; | ||
import { PieArc } from '../models/pie-arc.model'; | ||
import { PieGridData, PieGridDataItem } from '../models/chart-data.model'; | ||
import * as i0 from "@angular/core"; | ||
export interface PieArc { | ||
animate: boolean; | ||
class: string; | ||
data: PieGridDataItem; | ||
endAngle: number; | ||
fill: string; | ||
pointerEvents: boolean; | ||
startAngle: number; | ||
} | ||
export declare class PieGridSeriesComponent implements OnChanges { | ||
@@ -6,0 +14,0 @@ colors: any; |
import { TemplateRef, EventEmitter } from '@angular/core'; | ||
import { ColorHelper } from '../common/color.helper'; | ||
import { BaseChartComponent } from '../common/base-chart.component'; | ||
import { DataItem } from '../models/chart-data.model'; | ||
import { DataItem, PieGridData } from '../models/chart-data.model'; | ||
import { PlacementTypes } from '../common/tooltip/position'; | ||
import { StyleTypes } from '../common/tooltip/style.type'; | ||
import { ViewDimensions } from '../common/types/view-dimension.interface'; | ||
import { PieGridData } from '../models/pie-grid-data.model'; | ||
import * as i0 from "@angular/core"; | ||
@@ -10,0 +9,0 @@ export declare class PieGridComponent extends BaseChartComponent { |
@@ -63,2 +63,4 @@ import { EventEmitter, TemplateRef } from '@angular/core'; | ||
orientation: typeof Orientation; | ||
isSSR: boolean; | ||
ngOnInit(): void; | ||
update(): void; | ||
@@ -65,0 +67,0 @@ setDims(): void; |
{ | ||
"name": "@swimlane/ngx-charts", | ||
"version": "20.0.1", | ||
"version": "20.1.0", | ||
"description": "Declarative Charting Framework for Angular", | ||
@@ -5,0 +5,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6025126
65832
263
1