Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/data/api.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ function getInterfaceName(name: string, path: string): string {
name = name.toLowerCase();
if (name === "curve auto") name = "curve";
if (name === "plot facet") name = "plot";
if (path.startsWith("marks/")) name += " mark";
if (name === "bollinger window") name = "bollinger map method";
else if (path.startsWith("marks/")) name += " mark";
else if (path.startsWith("transforms/")) name += " transform";
return name;
}
Expand Down
2 changes: 1 addition & 1 deletion src/marks/bollinger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type {WindowOptions} from "../transforms/window.js";
import type {AreaXOptions, AreaYOptions} from "./area.js";
import type {LineXOptions, LineYOptions} from "./line.js";

/** Options for the bollinger window transform. */
/** Options for the bollinger map method. */
export interface BollingerWindowOptions {
/** The number of consecutive values in the window; defaults to 20. */
n?: number;
Expand Down