@bokeh/bokehjs
Version:
Interactive, novel data visualization
18 lines • 642 B
TypeScript
import { TickFormatter } from "./tick_formatter";
import type * as p from "../../core/properties";
export declare namespace PrintfTickFormatter {
type Attrs = p.AttrsOf<Props>;
type Props = TickFormatter.Props & {
format: p.Property<string>;
};
}
export interface PrintfTickFormatter extends PrintfTickFormatter.Attrs {
}
export declare class PrintfTickFormatter extends TickFormatter {
properties: PrintfTickFormatter.Props;
constructor(attrs?: Partial<PrintfTickFormatter.Attrs>);
doFormat(ticks: number[], _opts: {
loc: number;
}): string[];
}
//# sourceMappingURL=printf_tick_formatter.d.ts.map