UNPKG
neu-charts
Version:
latest (0.7.2)
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
0.0.1
0.0.0
neu-charts is a ngx-charts wrapper and charting framework for Angular 2 and beyond!.
neu-charts
/
app
/
modules
/
neu-charts
/
components
/
pie
/
donut-grid
/
donut-grid.component.d.ts
13 lines
(12 loc)
•
319 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
OnInit
,
EventEmitter
}
from
'@angular/core'
;
export
declare
class
DonutGridComponent
implements
OnInit
{
data
:
any
[];
onSelect
:
EventEmitter
<
any
>;
colorScheme
: {
name
:
string
;
domain
:
string
[]; };
constructor
(
);
ngOnInit
():
void
;
mSelectedEvent
(
event
:
any
):
void
; }