From 09b31dbffbe57d523001496aa5e8f43b67db7862 Mon Sep 17 00:00:00 2001 From: Ben Ripkens Date: Wed, 3 Dec 2014 18:45:35 +0100 Subject: [PATCH] An axis can be applied to transitions This is documented in the D3 API documentation: https://github.com/mbostock/d3/wiki/SVG-Axes#_axis --- d3/d3.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/d3/d3.d.ts b/d3/d3.d.ts index 8ae0c6a7f..15b1375f3 100644 --- a/d3/d3.d.ts +++ b/d3/d3.d.ts @@ -1750,6 +1750,8 @@ declare module D3 { export interface Axis { (selection: Selection): void; + (transition: Transition.Transition): void; + scale: { (): any; (scale: any): Axis;