MCPcopy
hub / github.com/TargetProcess/tauCharts / ChartGuide

Interface ChartGuide

types/index.d.ts:33–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33interface ChartGuide {
34 x?: {
35 nice?: boolean;
36 min?: number;
37 max?: number;
38 label?: string | { text: string; padding: number; };
39 tickPeriod?: string;
40 tickFormat?: string | ((x: any) => string);
41 };
42 y?: {
43 nice?: boolean;
44 min?: number;
45 max?: number;
46 label?: string | { text: string; padding: number; };
47 tickPeriod?: string;
48 tickFormat?: string | ((x: any) => string);
49 };
50 padding?: {
51 t: number;
52 r: number;
53 b: number;
54 l: number;
55 };
56 color?: {
57 brewer?: string[] | { [group: string]: string };
58 };
59 showAnchors?: 'always' | 'hover' | 'never';
60 interpolate?: 'linear' | 'smooth' | 'smooth-keep-extremum' | 'step' | 'step-before' | 'step-after';
61 split?: boolean;
62 showGridLines?: 'x' | 'y' | 'xy';
63}
64
65interface ChartSettings {
66 animationSpeed?: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected