Merge pull request #3678 from bluong/d3Filter

D3 filter
This commit is contained in:
Masahiro Wakame
2015-02-21 01:31:57 +09:00

4
d3/d3.d.ts vendored
View File

@@ -778,7 +778,7 @@ declare module D3 {
filter: {
(filter: (data: any, index: number) => boolean, thisArg?: any): UpdateSelection;
//(filter: string): UpdateSelection;
(filter: string): UpdateSelection;
};
call(callback: (selection: Selection, ...args: any[]) => void, ...args: any[]): Selection;
@@ -1751,7 +1751,7 @@ declare module D3 {
export interface Axis {
(selection: Selection): void;
(transition: Transition.Transition): void;
scale: {
(): any;
(scale: any): Axis;