MCPcopy
hub / github.com/chart-kit/react-native-chart-kit / AbstractChartConfig

Interface AbstractChartConfig

src/shared/AbstractChart.tsx:19–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17}
18
19export 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
38export type AbstractChartState = {};
39

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected