forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nvd3.d.ts
3351 lines (3266 loc) · 213 KB
/
nvd3.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Type definitions for nvd3 1.8.1
// Project: https://github.com/novus/nvd3
// Definitions by: Peter Mitchell <https://github.com/PjMitchell/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../d3/d3.d.ts" />
declare namespace nv {
//#region Core Interfaces
interface Margin {
left?: number,
right?: number,
top?: number,
bottom?: number
}
interface Size {
height: number;
width: number;
}
interface ArcsRadius {
inner: number;
outer: number;
}
interface Offset {
left?: number;
top?: number;
}
interface State {
dispatch: d3.Dispatch;
}
interface InteractiveLayer {
tooltip: Tooltip
}
interface SymbolMap {
set(name:string,func: (size: any)=>void): void
}
interface Utils {
/* Default color chooser uses a color scale of 20 colors from D3 https://github.com/mbostock/d3/wiki/Ordinal-Scales#categorical-colors */
defaultColor(): string[];
getColor(arg: any): string[];
/* Binds callback function to run when window is resized */
windowResize(listener: (ev: Event) => any): void;
/* Gets the browser window size */
windowSize(): Size;
state(): State;
symbolMap: SymbolMap;
}
interface ChartFactory<TChart extends Nvd3Element> {
generate: () => TChart;
callback?: (chart: TChart) => void;
}
interface Nvd3TooltipStatic {
show([left, top]: [number, number], content: string, gravity?: string): void; //todo sort out use on nv.tooltip.
cleanup(): void; //todo sort out use on nv.tooltip.
}
interface Nvd3Element {
dispatch: d3.Dispatch;
options(options: any): this;
update(): void;
(transition: d3.Transition<any[]>, ...args: any[]): any;
(selection: d3.Selection<any[]>, ...args: any[]): any;
(transition: d3.Transition<any>, ...args: any[]): any;
(selection: d3.Selection<any>, ...args: any[]): any;
}
interface Chart extends Nvd3Element {
state: State;
interactiveLayer: InteractiveLayer;
}
//#endregion
//#region Chart Component
interface Legend extends Nvd3Element {
align(): boolean;
align(value: boolean): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
expanded(): boolean;
expanded(value: boolean): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
key(): any;
key(value: any): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
/*Specifies how much spacing there is between legend items.*/
padding(): number;
/*Specifies how much spacing there is between legend items.*/
padding(value: number): this;
radioButtonMode(): boolean;
//If true, clicking legend items will cause it to behave like a radio button. (only one can be selected at
radioButtonMode(value: boolean): this;
rightAlign(): boolean;
rightAlign(value: boolean): this;
//If true, legend will update data.disabled and trigger a 'stateChange' dispatch.
updateState(): boolean;
//If true, legend will update data.disabled and trigger a 'stateChange' dispatch.
updateState(value: boolean): this;
//Options are "classic" and "furious"
vers(): string;
//Options are "classic" and "furious"
vers(value: string): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
}
interface Nvd3Axis extends d3.svg.Axis {
axisLabel(): string;
axisLabel(value: string): this;
axisLabelDistance(): number;
axisLabelDistance(value: number): this;
domain(): number[];
domain(domain: number[]): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
orient(): string;
orient(orientation: string): this;
range(): number[];
range(range: number[]): this;
rangeBand(): number;
rangeBands(interval: [number, number], padding?: number, outerPadding?: number): this;
/*Rotates the X axis labels by the specified degree.*/
rotateLabels(): number;
/*Rotates the X axis labels by the specified degree.*/
rotateLabels(range: number): this;
rotateYLabels(): number;
rotateYLabels(range: number): this;
scale(): any;
scale(scale: any): this;
showMaxMin(value: boolean): this;
staggerLabels(): boolean;
staggerLabels(value: boolean): this;
tickFormat(): (d: any) => string;
tickFormat(format: (t: any) => string): this;
tickFormat(format: string): this;
tickFormat(format: (d: any, i: any) => string): this;
tickPadding(): number;
tickPadding(padding: number): this;
tickSize(): number;
tickSize(size: number): this;
tickSize(inner: number, outer: number): this;
tickValues(): any[];
tickValues(values: any[]): this;
ticks(): any[];
ticks(...args: any[]): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
}
interface BoxPlot extends Nvd3Element {
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
id(): any;
id(value: number|string): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
maxBoxWidth(): number;
maxBoxWidth(value: number): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface Bullet extends Nvd3Element {
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/
forceX(): number[];
/*List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/
forceX(value: number[]): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
markers(): (d: any) => any //todo;
markers(func: (d: any) => any): this //todo;
measures(): (d: any) => any //todo;
measures(func: (d: any) => any): this //todo;
orient(): string;
orient(orientation: string): this;
ranges(): (d: any) => any //todo;
ranges(func: (d: any) => any): this //todo;
tickFormat(): (d: any) => string;
tickFormat(format: (d: any) => string): this;
tickFormat(format: string): this;
tickFormat(format: (d: any, i: any) => string): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
}
interface CandlestickBar extends Nvd3Element {
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(): boolean;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(value: boolean): this;
close(): (d: any) => number;
close(func: (d:any) => number): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/
forceX(): number[];
/*List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/
forceX(value: number[]): this;
/*List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option*/
forceY(): number[];
/*List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option*/
forceY(value: number[]): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
high(): (d: any) => number;
high(func: (d: any) => number): this;
id(): any;
id(value: number|string): this;
/*A master flag for turning chart interaction on and off. This overrides all tooltip, voronoi, and guideline options.*/
interactive(): boolean;
/*A master flag for turning chart interaction on and off. This overrides all tooltip, voronoi, and guideline options.*/
interactive(value: boolean): this;
low(): (d: any) => number;
low(func: (d: any) => number): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
open(): (d: any) => number;
open(func: (d: any) => number): this;
padData(): boolean;
padData(value: boolean): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface DiscreteBar extends Nvd3Element {
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(): number[];
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(value: number[]): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
id(): any;
id(value: number|string): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
rectClass(): string;
rectClass(value: string): this;
/*Prints the Y values on the top of the bars. Only recommended to use if there aren't many bars.*/
showValues(): boolean;
/*Prints the Y values on the top of the bars. Only recommended to use if there aren't many bars.*/
showValues(value: boolean): this;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(): string;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(value: string): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface Distribution extends Nvd3Element {
axis(): string;
axis(value: 'x'): this;
axis(value: 'y'): this;
axis(value: string): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
domain(): number[];
domain(value: number[]): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
getData(func: (d: any) => number): this;
scale(): any;
scale(value: any): this;
size(): number;
size(value: number): this;
width(): number;
width(value: number): this;
}
interface HistoricalBar extends Nvd3Element {
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(): boolean;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(value: boolean): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/* List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceX(): number[];
/* List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceX(value: number[]): this;
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(): number[];
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(value: number[]): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
id(): any;
id(value: number|string): this;
/*A master flag for turning chart interaction on and off. This overrides all tooltip, voronoi, and guideline options.*/
interactive(): boolean;
/*A master flag for turning chart interaction on and off. This overrides all tooltip, voronoi, and guideline options.*/
interactive(value: boolean): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
/*.*/
padData(): boolean;
/**/
padData(value: boolean): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface Line extends Scatter {
scatter: Scatter;
/*A provided function that allows a line to be non-continuous when not defined.*/
defined(): (d: any, i: number) => boolean;
/*A provided function that allows a line to be non-continuous when not defined.*/
defined(func: (d: any, i: number) => boolean): this;
/*controls the line interpolation between points, many options exist, see the D3 reference:*/
interpolate(): string;
/*controls the line interpolation between points, many options exist, see the D3 reference:*/
interpolate(value: string): this;
/*Function to define if a line is a normal line or if it fills in the area. Notice the default gets the value from the line's definition in data. If a non-function is given, it the value is used for all lines.*/
isArea(): (d: any) => boolean;
/*Function to define if a line is a normal line or if it fills in the area. Notice the default gets the value from the line's definition in data. If a non-function is given, it the value is used for all lines.*/
isArea(value: boolean): this;
/*Function to define if a line is a normal line or if it fills in the area. Notice the default gets the value from the line's definition in data. If a non-function is given, it the value is used for all lines.*/
isArea(func: (d: any) => boolean): this;
}
interface MultiBar extends Nvd3Element {
/*this option lets you specific a color for each bar group to have the same color but differentiated by shading.*/
barColor(value: string[]): this;
/*this option lets you specific a color for each bar group to have the same color but differentiated by shading.*/
barColor(func: (d: any, i: number) => string): this;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(): boolean;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(value: boolean): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/**/
disabled(): boolean[];
/**/
disabled(value: boolean[]): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(): number[];
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(value: number[]): this;
/*The padding between bar groups, this is passed as the padding attribute of rangeBands*/
groupSpacing(): number;
/*The padding between bar groups, this is passed as the padding attribute of rangeBands*/
groupSpacing(value: number): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
/*.*/
hideable(): boolean;
/**/
hideable(value: boolean): this;
id(): any;
id(value: number|string): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
/*.*/
stacked(): boolean;
/**/
stacked(value: boolean): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'silhouette'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'wiggle'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'expand'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'zero'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: string): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: (data: Array<[number, number]>) => number[]): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface MultiBarHorizontal extends Nvd3Element {
/*this option lets you specific a color for each bar group to have the same color but differentiated by shading.*/
barColor(value: string[]): this;
/*this option lets you specific a color for each bar group to have the same color but differentiated by shading.*/
barColor(func: (d: any, i: number) => string): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/**/
disabled(): boolean[];
/**/
disabled(value: boolean[]): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(): number[];
/* List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the Y domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option.*/
forceY(value: number[]): this;
/*The padding between bar groups, this is passed as the padding attribute of rangeBands*/
groupSpacing(): number;
/*The padding between bar groups, this is passed as the padding attribute of rangeBands*/
groupSpacing(value: number): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
id(): any;
id(value: number|string): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
/*Prints the Y values on the top of the bars. Only recommended to use if there aren't many bars.*/
showValues(): boolean;
/*Prints the Y values on the top of the bars. Only recommended to use if there aren't many bars.*/
showValues(value: boolean): this;
/*.*/
stacked(): boolean;
/**/
stacked(value: boolean): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'silhouette'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'wiggle'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'expand'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: 'zero'): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: string): this;
/* options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function*/
stackOffset(offset: (data: Array<[number, number]>) => number[]): this;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(): string;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(value: string): this;
/*.*/
valuePadding(): number;
/**/
valuePadding(value: number): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/**/
yErr(): (d: any, i: number) => number|number[];
/**/
yErr(func: (d: any, i: number) => number | number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface OhlcBar extends Nvd3Element {
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(): boolean;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(value: boolean): this;
close(): (d: any) => number;
close(func: (d: any) => number): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/
forceX(): number[];
/*List of numbers to Force into the X scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/
forceX(value: number[]): this;
/*List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option*/
forceY(): number[];
/*List of numbers to Force into the Y scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the yDomain option*/
forceY(value: number[]): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
high(): (d: any) => number;
high(func: (d: any) => number): this;
id(): any;
id(value: number|string): this;
/*A master flag for turning chart interaction on and off. This overrides all tooltip, voronoi, and guideline options.*/
interactive(): boolean;
/*A master flag for turning chart interaction on and off. This overrides all tooltip, voronoi, and guideline options.*/
interactive(value: boolean): this;
low(): (d: any) => number;
low(func: (d: any) => number): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
open(): (d: any) => number;
open(func: (d: any) => number): this;
padData(): boolean;
padData(value: boolean): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(): number[];
/* Defines the whole X scale's domain. Using this will disable calculating the domain based on the data.*/
xDomain(value: number[]): this;
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(): number[];
/* Override the X scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
xRange(value: number[]): this;
/* Override the default scale type for the X axis*/
xScale(): any;
/* Override the default scale type for the X axis*/
xScale(value: any): this;
y(): (d: any) => number;
/* Proxy function to return the y value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
y(func: (d: any) => number): this;
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(): number[];
/* Defines the whole y scale's domain. Using this will disable calculating the domain based on the data.*/
yDomain(value: number[]): this;
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(): number[];
/* Override the y scale's range. Using this will disable calculating the range based on the data and chart width/height.*/
yRange(value: number[]): this;
/* Override the default scale type for the y axis*/
yScale(): any;
/* Override the default scale type for the y axis*/
yScale(value: any): this;
}
interface ParallelCoordinates extends Nvd3Element {
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
dimensionData(): any
dimensionData(d: any): this
/*D3 format for each x axis*/
dimensionFormats(): string[];
/*D3 format for each x axis*/
dimensionFormats(value: string[]): this;
/*Name of each dimension, used for each axis.*/
dimensionNames(): string[];
/*Name of each dimension, used for each axis.*/
dimensionNames(value: string[]): this;
/*Deprecated. Use dimensionsNames instead. */
dimensions(): any;
/*Deprecated. Use dimensionsNames instead. .*/
dimensions(value: any): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
/*Specifies each line tension. Values between 0 and 1.*/
lineTension(): number;
/*Specifies each line tension. Values between 0 and 1.*/
lineTension(value: number): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
}
interface Pie extends Nvd3Element {
/*Specifies each slice size, by an inner and a outer radius. Values between 0 and 1*/
arcsRadius(): ArcsRadius[];
/*Specifies each slice size, by an inner and a outer radius. Values between 0 and 1*/
arcsRadius(value: ArcsRadius[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*D3 3.4+, For donut charts only, the corner radius of the slices. Typically used with padAngle.*/
cornerRadius(): number;
/*D3 3.4+, For donut charts only, the corner radius of the slices. Typically used with padAngle.*/
cornerRadius(value: number): this;
/*Whether to make a pie graph a donut graph or not.*/
donut(): boolean;
/*Whether to make a pie graph a donut graph or not.*/
donut(value: boolean): this;
/**/
donutLabelsOutside(): boolean;
/**/
donutLabelsOutside(value: boolean): this;
/*Percent of pie radius to cut out of the middle to make the donut. It is multiplied by the outer radius to calculate the inner radius, thus it should be between 0 and 1.*/
donutRatio(): number;
/*Percent of pie radius to cut out of the middle to make the donut. It is multiplied by the outer radius to calculate the inner radius, thus it should be between 0 and 1.*/
donutRatio(value: number): this;
/*Function used to manage the ending angle of the pie/donut chart*/
endAngle(): (d: any) => number;
/*Function used to manage the ending angle of the pie/donut chart*/
endAngle(func: (d: any) => number): this;
/*For pie/donut charts, whether to increase slice radius on hover or not*/
growOnHover(): boolean;
/*For pie/donut charts, whether to increase slice radius on hover or not*/
growOnHover(value: boolean): this;
/*The height the graph or component created inside the SVG should be made*/
height(): number;
/*The height the graph or component created inside the SVG should be made.*/
height(value: number): this;
id(): any;
id(value: number|string): this;
/**/
labelFormat(): string;
/**/
labelFormat(value: string): this;
/**/
labelFormat(format: (d: any) => string): this;
/**/
labelSunbeamLayout(): boolean;
/**/
labelSunbeamLayout(value: boolean): this;
/*Pie/donut charts: The slice threshold size to not display the label because it woudl be too small of a space*/
labelThreshold(): number;
/*Pie/donut charts: The slice threshold size to not display the label because it woudl be too small of a space*/
labelThreshold(value: number): this;
/*pie/donut charts only: what kind of data to display for the slice labels. Options are key, value, or percent. */
labelType(): string;
/*pie/donut charts only: what kind of data to display for the slice labels. Options are key, value, or percent. */
labelType(value: 'key'): this;
/*pie/donut charts only: what kind of data to display for the slice labels. Options are key, value, or percent. */
labelType(value: 'value'): this;
/*pie/donut charts only: what kind of data to display for the slice labels. Options are key, value, or percent. */
labelType(value: 'percent'): this;
/*pie/donut charts only: what kind of data to display for the slice labels. Options are key, value, or percent. */
labelType(value: string): this;
/*pie/donut charts only: what kind of data to display for the slice labels. Options are key, value, or percent. */
labelType(func: (d: any, i: number, values:any)=> string): this;
/*Whether pie/donut chart labels should be outside the slices instead of inside them*/
labelsOutside(): boolean;
/*Whether pie/donut chart labels should be outside the slices instead of inside them*/
labelsOutside(value: boolean): this;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(): Margin;
/*Object containing the margins for the chart or component. You can specify only certain margins in the object to change just those parts.*/
margin(value: Margin): this;
/*D3 3.4+, For donut charts only, the percent of the chart that should be spacing between slices.*/
padAngle(): number;
/*D3 3.4+, For donut charts only, the percent of the chart that should be spacing between slices.*/
padAngle(value: number): this;
/**/
pieLabelsOutside(): boolean;
/**/
pieLabelsOutside(value: boolean): this;
/*Show pie/donut chart labels for each slice*/
showLabels(): boolean;
/*Show pie/donut chart labels for each slice*/
showLabels(value: boolean): this;
/*Function used to manage the starting angle of the pie/donut chart*/
startAngle(): (d: any) => number;
/*Function used to manage the starting angle of the pie/donut chart*/
startAngle(func: (d: any) => number): this;
/*Text to include within the middle of a donut chart*/
title(): string;
/*Text to include within the middle of a donut chart*/
title(value: string): this;
/*Vertical offset for the donut chart title*/
titleOffset(): number;
/*Vertical offset for the donut chart title*/
titleOffset(value: number): this;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(): string;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(value: string): this;
/*D3 Format object for the label of pie/donut, discrete bar and multibar charts.*/
valueFormat(format: (d: any) => string): this;
/* The width the graph or component created inside the SVG should be made*/
width(): number;
/*The width the graph or component created inside the SVG should be made.*/
width(value: number): this;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(): (d: any) => any;
/* Proxy function to return the X value so adjustments can be made if needed. For pie/donut chart this returns the key for the slice.*/
x(func: (d: any) => any): this;
/*Proxy function to return the Y value so adjustments can be made if needed.For pie/ donut chart this returns the value for the slice.*/
y(): (d: any) => number;
/*Proxy function to return the Y value so adjustments can be made if needed. For pie/donut chart this returns the value for the slice.*/
y(func: (d: any) => number): this;
/**/
}
interface Scatter extends Nvd3Element {
clearHighlights(): this;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(): boolean;
/*If true, masks lines within the X and Y scales using a clip-path*/
clipEdge(value: boolean): this;
/*When useVoronoi and clipVoronoi are true, you can control the clip radius with this option. Essentially this lets you set how far away from the actual point you can put the mouse for it to select the point.*/
clipRadius(func: (d: any) => number): this;
/*When useVoronoi and clipVoronoi are true, you can control the clip radius with this option. Essentially this lets you set how far away from the actual point you can put the mouse for it to select the point.*/
clipRadius(value: number): this;
/*When useVoronoi is on, this masks each voronoi section with a circle to limit selection to smaller area.*/
clipVoronoi(): boolean;
/*When useVoronoi is on, this masks each voronoi section with a circle to limit selection to smaller area.*/
clipVoronoi(value: boolean): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(value: string[]): this;
/*Colors to use for the different data. If an array is given, it is converted to a function automatically.*/
color(func: (d: any, i: number) => string): this;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(): number;
/*Duration in ms to take when updating chart. For things like bar charts, each bar can animate by itself but the total time taken should be this value.*/
duration(value: number): this;
/*List of numbers to Force into the point scale (ie. 0, or a max / min, etc.). This ensures the numbers are in the X domain but doesn't override the whole domain. This option only applies if you have not overridden the whole domain with the xDomain option*/