| 2367 | } |
| 2368 | |
| 2369 | export interface LegendElement<TType extends ChartType> extends Element<AnyObject, LegendOptions<TType>>, LayoutItem { |
| 2370 | chart: Chart<TType>; |
| 2371 | ctx: CanvasRenderingContext2D; |
| 2372 | legendItems?: LegendItem[]; |
| 2373 | options: LegendOptions<TType>; |
| 2374 | fit(): void; |
| 2375 | } |
| 2376 | |
| 2377 | export interface LegendOptions<TType extends ChartType> { |
| 2378 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected