| 17 | } |
| 18 | |
| 19 | export interface AbstractChartConfig extends ChartConfig { |
| 20 | count?: number; |
| 21 | data?: Dataset[]; |
| 22 | width?: number; |
| 23 | height?: number; |
| 24 | paddingTop?: number; |
| 25 | paddingRight?: number; |
| 26 | horizontalLabelRotation?: number; |
| 27 | formatYLabel?: (yLabel: string) => string; |
| 28 | labels?: string[]; |
| 29 | horizontalOffset?: number; |
| 30 | xAxisIntervalCount?: number; |
| 31 | stackedBar?: boolean; |
| 32 | verticalLabelRotation?: number; |
| 33 | formatXLabel?: (xLabel: string) => string; |
| 34 | verticalLabelsHeightPercentage?: number; |
| 35 | formatTopBarValue?: (topBarValue: number) => string | number; |
| 36 | } |
| 37 | |
| 38 | export type AbstractChartState = {}; |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected