| 31 | } |
| 32 | |
| 33 | interface 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 | |
| 65 | interface ChartSettings { |
| 66 | animationSpeed?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected