UNPKG

@patternfly/react-charts

Version:

This library provides a set of React chart components for use with the PatternFly reference implementation.

20 lines 1.21 kB
import { DataGetterPropType } from 'victory-core'; import { ChartThemeDefinition } from '../../ChartTheme'; interface ChartBulletDataInterface { data?: any[]; invert?: boolean; negativeMeasureTheme?: ChartThemeDefinition; theme?: ChartThemeDefinition; themeColor?: string; themeVariant?: string; y?: DataGetterPropType; y0?: DataGetterPropType; } export declare const getComparativeMeasureData: ({ data, themeColor, theme, y }: ChartBulletDataInterface) => any[]; export declare const getComparativeErrorMeasureData: ({ data, themeColor, theme, y }: ChartBulletDataInterface) => any[]; export declare const getComparativeWarningMeasureData: ({ data, themeColor, theme, y }: ChartBulletDataInterface) => any[]; export declare const getPrimaryDotMeasureData: ({ data, invert, themeColor, theme, y, y0 }: ChartBulletDataInterface) => any[]; export declare const getPrimarySegmentedMeasureData: ({ data, invert, themeColor, theme, negativeMeasureTheme, y, y0 }: ChartBulletDataInterface) => any[]; export declare const getQualitativeRangeData: ({ data, invert, themeColor, theme, y, y0 }: ChartBulletDataInterface) => any[]; export {}; //# sourceMappingURL=chart-bullet-data.d.ts.map