mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
add missing axis parameter to flot tickFormatter
The tickFormatter entry for a flot axis definition now has the optional axis argument available.
This commit is contained in:
Vendored
+1
-1
@@ -107,7 +107,7 @@ declare module jquery.flot {
|
||||
ticks?: any; // null or number or ticks array or (fn: axis -> ticks array)
|
||||
tickSize?: any; // number or array
|
||||
minTickSize?: any; // number or array
|
||||
tickFormatter?: (t: number) => string; // (fn: number, object -> string) or string
|
||||
tickFormatter?: (t: number, a?: axis) => string; // (fn: number, object -> string) or string
|
||||
tickDecimals?: number;
|
||||
|
||||
labelWidth?: number;
|
||||
|
||||
Reference in New Issue
Block a user